diff options
author | Reid Kleckner <rnk@google.com> | 2015-11-12 21:58:28 +0000 |
---|---|---|
committer | Reid Kleckner <rnk@google.com> | 2015-11-12 21:58:28 +0000 |
commit | b8e3bff98ada11413489efa77e92cb9c4d36c161 (patch) | |
tree | 7519355de3c5093e2e359bd48f887521e5ec92b1 | |
parent | 5e3fb7616dda7343676f9f06677efaa56de115d4 (diff) | |
download | bcm5719-llvm-b8e3bff98ada11413489efa77e92cb9c4d36c161.tar.gz bcm5719-llvm-b8e3bff98ada11413489efa77e92cb9c4d36c161.zip |
[Windows] Fix halt_on_error-1.c test on Windows with %env_asan_opts
llvm-svn: 252958
-rw-r--r-- | compiler-rt/test/asan/TestCases/halt_on_error-1.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/compiler-rt/test/asan/TestCases/halt_on_error-1.c b/compiler-rt/test/asan/TestCases/halt_on_error-1.c index 90a907c39e7..63c65e58bb7 100644 --- a/compiler-rt/test/asan/TestCases/halt_on_error-1.c +++ b/compiler-rt/test/asan/TestCases/halt_on_error-1.c @@ -3,8 +3,8 @@ // RUN: %clang_asan -fsanitize-recover=address %s -o %t // // RUN: env not %run %t 2>&1 | FileCheck %s -// RUN: env ASAN_OPTIONS=$ASAN_OPTIONS:halt_on_error=true not %run %t 2>&1 | FileCheck %s -// RUN: env ASAN_OPTIONS=$ASAN_OPTIONS:halt_on_error=false %run %t 2>&1 | FileCheck %s --check-prefix CHECK-RECOVER +// RUN: %env_asan_opts=halt_on_error=true not %run %t 2>&1 | FileCheck %s +// RUN: %env_asan_opts=halt_on_error=false %run %t 2>&1 | FileCheck %s --check-prefix CHECK-RECOVER #include <string.h> |