[TSan] Fix free_race.c by removing `not` from the test invocation that doesn't fail.
authorAlexander Potapenko <glider@google.com>
Wed, 7 Aug 2013 13:54:27 +0000 (13:54 +0000)
committerAlexander Potapenko <glider@google.com>
Wed, 7 Aug 2013 13:54:27 +0000 (13:54 +0000)
llvm-svn: 187889

compiler-rt/lib/tsan/lit_tests/free_race.c

index f54b628f87c12e9cc776a298fd42f22aeb376f7e..cca38ad826fd102f1c6f9d69af09ca2340765013 100644 (file)
@@ -1,6 +1,6 @@
-// RUN: %clang_tsan -O1 %s -o %t || exit 1
+// RUN: %clang_tsan -O1 %s -o %t
 // RUN: not %t 2>&1 | FileCheck %s --check-prefix=NOZUPP
-// RUN: TSAN_OPTIONS="suppressions=%s.supp print_suppressions=1" not %t 2>&1 | FileCheck %s --check-prefix=SUPP
+// RUN: TSAN_OPTIONS="suppressions=%s.supp print_suppressions=1" %t 2>&1 | FileCheck %s --check-prefix=SUPP
 
 #include <pthread.h>
 #include <stdlib.h>
@@ -47,4 +47,3 @@ int main() {
 // CHECK-NOZUPP: SUMMARY: ThreadSanitizer: heap-use-after-free{{.*}}Thread2
 // CHECK-SUPP:   ThreadSanitizer: Matched 1 suppressions
 // CHECK-SUPP:    1 race:^Thread2$
-