Alexey Samsonov 966eba0585 [Sanitizer] Test churn: use %env_tool_opts in sanitizer_common lit tests.
This follows the approach we use in ASan and UBSan lit tests to setup
tool options in a portable way, and to provide a nice way to specify
testsuite-wide defaults.

llvm-svn: 246058
2015-08-26 19:29:07 +00:00

16 lines
487 B
C++

// RUN: %clangxx -O0 %s -o %t
// RUN: %env_tool_opts=invalid_option_name=10,verbosity=1 %run %t 2>&1 | FileCheck %s --check-prefix=CHECK-V1
// RUN: %env_tool_opts=invalid_option_name=10 %run %t 2>&1 | FileCheck %s --check-prefix=CHECK-V0
#include <stdio.h>
int main() {
fprintf(stderr, "done\n");
}
// CHECK-V1: WARNING: found 1 unrecognized
// CHECK-V1: invalid_option_name
// CHECK-V0-NOT: WARNING: found 1 unrecognized
// CHECK-V0-NOT: invalid_option_name
// CHECK: done