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
6 lines
333 B
Plaintext
6 lines
333 B
Plaintext
CHECK: BINGO
|
|
RUN: %cpp_compiler %S/SwitchTest.cpp -o %t-SwitchTest
|
|
RUN: %cpp_compiler %S/Switch2Test.cpp -o %t-Switch2Test
|
|
RUN: not %run %t-SwitchTest -use_cmp=0 -use_value_profile=1 -runs=100000000 -seed=1 2>&1 | FileCheck %s
|
|
RUN: not %run %t-Switch2Test -use_cmp=0 -use_value_profile=1 -runs=100000000 -seed=1 2>&1 | FileCheck %s
|