[ASan/Win tests] Use the env keyword in the SUAR tests to work with gnuwin/lit correctly
authorTimur Iskhodzhanov <timurrrr@google.com>
Mon, 26 May 2014 11:25:32 +0000 (11:25 +0000)
committerTimur Iskhodzhanov <timurrrr@google.com>
Mon, 26 May 2014 11:25:32 +0000 (11:25 +0000)
llvm-svn: 209620

compiler-rt/test/asan/TestCases/Windows/dll_stack_use_after_return.cc
compiler-rt/test/asan/TestCases/Windows/stack_use_after_return.cc

index 19958e8..322aa53 100644 (file)
@@ -1,7 +1,7 @@
 // RUN: %clangxx_asan -O0 %p/dll_host.cc -Fe%t
 // RUN: %clangxx_asan -LD -O0 %s -Fe%t.dll
 // FIXME: 'cat' is needed due to PR19744.
-// RUN: ASAN_OPTIONS=detect_stack_use_after_return=1 not %run %t %t.dll 2>&1 | cat | FileCheck %s
+// RUN: env ASAN_OPTIONS=detect_stack_use_after_return=1 not %run %t %t.dll 2>&1 | cat | FileCheck %s
 
 #include <malloc.h>
 
index 535ba74..03ab70e 100644 (file)
@@ -1,6 +1,6 @@
 // RUN: %clangxx_asan -O0 %s -Fe%t
 // FIXME: 'cat' is needed due to PR19744.
-// RUN: ASAN_OPTIONS=detect_stack_use_after_return=1 not %run %t 2>&1 | cat | FileCheck %s
+// RUN: env ASAN_OPTIONS=detect_stack_use_after_return=1 not %run %t 2>&1 | cat | FileCheck %s
 
 char *x;