This patch does not do anything, but paves the way for future changes, where %run command will be expanded into a script performing the testing on device. Differential Revision: https://reviews.llvm.org/D46553 llvm-svn: 332144
12 lines
344 B
Plaintext
12 lines
344 B
Plaintext
UNSUPPORTED: darwin
|
|
RUN: %cpp_compiler %S/PrintFuncTest.cpp -o %t
|
|
RUN: %run %t -seed=1 -runs=100000 2>&1 | FileCheck %s
|
|
RUN: %run %t -seed=1 -runs=100000 -print_funcs=0 2>&1 | FileCheck %s --check-prefix=NO
|
|
CHECK: NEW_FUNC{{.*}} FunctionA
|
|
CHECK: NEW_FUNC{{.*}} FunctionB
|
|
CHECK: NEW_FUNC{{.*}} FunctionC
|
|
CHECK: BINGO
|
|
|
|
NO-NOT: NEW_FUNC
|
|
NO: BINGO
|