[compiler-rt] r187875 - Enable pipefail for TSan tests

Rafael EspĂ­ndola rafael.espindola at gmail.com
Wed Aug 7 07:22:26 PDT 2013


thanks!

On 7 August 2013 05:02, Alexey Samsonov <samsonov at google.com> wrote:
> Author: samsonov
> Date: Wed Aug  7 04:02:37 2013
> New Revision: 187875
>
> URL: http://llvm.org/viewvc/llvm-project?rev=187875&view=rev
> Log:
> Enable pipefail for TSan tests
>
> Modified:
>     compiler-rt/trunk/lib/tsan/lit_tests/atomic_free.cc
>     compiler-rt/trunk/lib/tsan/lit_tests/atomic_free2.cc
>     compiler-rt/trunk/lib/tsan/lit_tests/atomic_race.cc
>     compiler-rt/trunk/lib/tsan/lit_tests/atomic_stack.cc
>     compiler-rt/trunk/lib/tsan/lit_tests/fd_location.cc
>     compiler-rt/trunk/lib/tsan/lit_tests/fd_pipe_race.cc
>     compiler-rt/trunk/lib/tsan/lit_tests/fd_stdout_race.cc
>     compiler-rt/trunk/lib/tsan/lit_tests/free_race.c
>     compiler-rt/trunk/lib/tsan/lit_tests/free_race2.c
>     compiler-rt/trunk/lib/tsan/lit_tests/global_race.cc
>     compiler-rt/trunk/lib/tsan/lit_tests/heap_race.cc
>     compiler-rt/trunk/lib/tsan/lit_tests/inlined_memcpy_race.cc
>     compiler-rt/trunk/lib/tsan/lit_tests/java_lock_rec_race.cc
>     compiler-rt/trunk/lib/tsan/lit_tests/java_race.cc
>     compiler-rt/trunk/lib/tsan/lit_tests/java_race_move.cc
>     compiler-rt/trunk/lib/tsan/lit_tests/lit.cfg
>     compiler-rt/trunk/lib/tsan/lit_tests/load_shared_lib.cc
>     compiler-rt/trunk/lib/tsan/lit_tests/longjmp3.cc
>     compiler-rt/trunk/lib/tsan/lit_tests/longjmp4.cc
>     compiler-rt/trunk/lib/tsan/lit_tests/malloc_stack.cc
>     compiler-rt/trunk/lib/tsan/lit_tests/memcpy_race.cc
>     compiler-rt/trunk/lib/tsan/lit_tests/mop_with_offset.cc
>     compiler-rt/trunk/lib/tsan/lit_tests/mop_with_offset2.cc
>     compiler-rt/trunk/lib/tsan/lit_tests/mutex_destroy_locked.cc
>     compiler-rt/trunk/lib/tsan/lit_tests/mutexset1.cc
>     compiler-rt/trunk/lib/tsan/lit_tests/mutexset2.cc
>     compiler-rt/trunk/lib/tsan/lit_tests/mutexset3.cc
>     compiler-rt/trunk/lib/tsan/lit_tests/mutexset4.cc
>     compiler-rt/trunk/lib/tsan/lit_tests/mutexset5.cc
>     compiler-rt/trunk/lib/tsan/lit_tests/mutexset6.cc
>     compiler-rt/trunk/lib/tsan/lit_tests/mutexset7.cc
>     compiler-rt/trunk/lib/tsan/lit_tests/mutexset8.cc
>     compiler-rt/trunk/lib/tsan/lit_tests/oob_race.cc
>     compiler-rt/trunk/lib/tsan/lit_tests/race_on_barrier.c
>     compiler-rt/trunk/lib/tsan/lit_tests/race_on_barrier2.c
>     compiler-rt/trunk/lib/tsan/lit_tests/race_on_heap.cc
>     compiler-rt/trunk/lib/tsan/lit_tests/race_on_mutex.c
>     compiler-rt/trunk/lib/tsan/lit_tests/race_on_mutex2.c
>     compiler-rt/trunk/lib/tsan/lit_tests/race_on_read.cc
>     compiler-rt/trunk/lib/tsan/lit_tests/race_on_write.cc
>     compiler-rt/trunk/lib/tsan/lit_tests/race_with_finished_thread.cc
>     compiler-rt/trunk/lib/tsan/lit_tests/signal_errno.cc
>     compiler-rt/trunk/lib/tsan/lit_tests/signal_malloc.cc
>     compiler-rt/trunk/lib/tsan/lit_tests/sigsuspend.cc
>     compiler-rt/trunk/lib/tsan/lit_tests/simple_race.c
>     compiler-rt/trunk/lib/tsan/lit_tests/simple_race.cc
>     compiler-rt/trunk/lib/tsan/lit_tests/simple_stack.c
>     compiler-rt/trunk/lib/tsan/lit_tests/simple_stack2.cc
>     compiler-rt/trunk/lib/tsan/lit_tests/sleep_sync.cc
>     compiler-rt/trunk/lib/tsan/lit_tests/sleep_sync2.cc
>     compiler-rt/trunk/lib/tsan/lit_tests/stack_race.cc
>     compiler-rt/trunk/lib/tsan/lit_tests/stack_race2.cc
>     compiler-rt/trunk/lib/tsan/lit_tests/static_init3.cc
>     compiler-rt/trunk/lib/tsan/lit_tests/suppress_same_address.cc
>     compiler-rt/trunk/lib/tsan/lit_tests/suppress_same_stacks.cc
>     compiler-rt/trunk/lib/tsan/lit_tests/thread_leak3.c
>     compiler-rt/trunk/lib/tsan/lit_tests/thread_leak5.c
>     compiler-rt/trunk/lib/tsan/lit_tests/thread_name.cc
>     compiler-rt/trunk/lib/tsan/lit_tests/tiny_race.c
>     compiler-rt/trunk/lib/tsan/lit_tests/tls_race.cc
>     compiler-rt/trunk/lib/tsan/lit_tests/tls_race2.cc
>     compiler-rt/trunk/lib/tsan/lit_tests/unaligned_race.cc
>     compiler-rt/trunk/lib/tsan/lit_tests/vptr_harmful_race.cc
>     compiler-rt/trunk/lib/tsan/lit_tests/vptr_harmful_race2.cc
>     compiler-rt/trunk/lib/tsan/lit_tests/write_in_reader_lock.cc
>
> Modified: compiler-rt/trunk/lib/tsan/lit_tests/atomic_free.cc
> URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/lib/tsan/lit_tests/atomic_free.cc?rev=187875&r1=187874&r2=187875&view=diff
> ==============================================================================
> --- compiler-rt/trunk/lib/tsan/lit_tests/atomic_free.cc (original)
> +++ compiler-rt/trunk/lib/tsan/lit_tests/atomic_free.cc Wed Aug  7 04:02:37 2013
> @@ -1,4 +1,4 @@
> -// RUN: %clangxx_tsan -O1 %s -o %t && %t 2>&1 | FileCheck %s
> +// RUN: %clangxx_tsan -O1 %s -o %t && not %t 2>&1 | FileCheck %s
>  #include <pthread.h>
>  #include <unistd.h>
>
>
> Modified: compiler-rt/trunk/lib/tsan/lit_tests/atomic_free2.cc
> URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/lib/tsan/lit_tests/atomic_free2.cc?rev=187875&r1=187874&r2=187875&view=diff
> ==============================================================================
> --- compiler-rt/trunk/lib/tsan/lit_tests/atomic_free2.cc (original)
> +++ compiler-rt/trunk/lib/tsan/lit_tests/atomic_free2.cc Wed Aug  7 04:02:37 2013
> @@ -1,4 +1,4 @@
> -// RUN: %clangxx_tsan -O1 %s -o %t && %t 2>&1 | FileCheck %s
> +// RUN: %clangxx_tsan -O1 %s -o %t && not %t 2>&1 | FileCheck %s
>  #include <pthread.h>
>  #include <unistd.h>
>
>
> Modified: compiler-rt/trunk/lib/tsan/lit_tests/atomic_race.cc
> URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/lib/tsan/lit_tests/atomic_race.cc?rev=187875&r1=187874&r2=187875&view=diff
> ==============================================================================
> --- compiler-rt/trunk/lib/tsan/lit_tests/atomic_race.cc (original)
> +++ compiler-rt/trunk/lib/tsan/lit_tests/atomic_race.cc Wed Aug  7 04:02:37 2013
> @@ -1,4 +1,4 @@
> -// RUN: %clangxx_tsan -O1 %s -o %t && %t 2>&1 | FileCheck %s
> +// RUN: %clangxx_tsan -O1 %s -o %t && not %t 2>&1 | FileCheck %s
>  #include <pthread.h>
>  #include <unistd.h>
>  #include <stdio.h>
>
> Modified: compiler-rt/trunk/lib/tsan/lit_tests/atomic_stack.cc
> URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/lib/tsan/lit_tests/atomic_stack.cc?rev=187875&r1=187874&r2=187875&view=diff
> ==============================================================================
> --- compiler-rt/trunk/lib/tsan/lit_tests/atomic_stack.cc (original)
> +++ compiler-rt/trunk/lib/tsan/lit_tests/atomic_stack.cc Wed Aug  7 04:02:37 2013
> @@ -1,4 +1,4 @@
> -// RUN: %clangxx_tsan -O1 %s -o %t && %t 2>&1 | FileCheck %s
> +// RUN: %clangxx_tsan -O1 %s -o %t && not %t 2>&1 | FileCheck %s
>  #include <pthread.h>
>  #include <unistd.h>
>
>
> Modified: compiler-rt/trunk/lib/tsan/lit_tests/fd_location.cc
> URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/lib/tsan/lit_tests/fd_location.cc?rev=187875&r1=187874&r2=187875&view=diff
> ==============================================================================
> --- compiler-rt/trunk/lib/tsan/lit_tests/fd_location.cc (original)
> +++ compiler-rt/trunk/lib/tsan/lit_tests/fd_location.cc Wed Aug  7 04:02:37 2013
> @@ -1,4 +1,4 @@
> -// RUN: %clangxx_tsan -O1 %s -o %t && %t 2>&1 | FileCheck %s
> +// RUN: %clangxx_tsan -O1 %s -o %t && not %t 2>&1 | FileCheck %s
>  #include <pthread.h>
>  #include <stdio.h>
>  #include <unistd.h>
>
> Modified: compiler-rt/trunk/lib/tsan/lit_tests/fd_pipe_race.cc
> URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/lib/tsan/lit_tests/fd_pipe_race.cc?rev=187875&r1=187874&r2=187875&view=diff
> ==============================================================================
> --- compiler-rt/trunk/lib/tsan/lit_tests/fd_pipe_race.cc (original)
> +++ compiler-rt/trunk/lib/tsan/lit_tests/fd_pipe_race.cc Wed Aug  7 04:02:37 2013
> @@ -1,4 +1,4 @@
> -// RUN: %clangxx_tsan -O1 %s -o %t && %t 2>&1 | FileCheck %s
> +// RUN: %clangxx_tsan -O1 %s -o %t && not %t 2>&1 | FileCheck %s
>  #include <pthread.h>
>  #include <stdio.h>
>  #include <unistd.h>
>
> Modified: compiler-rt/trunk/lib/tsan/lit_tests/fd_stdout_race.cc
> URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/lib/tsan/lit_tests/fd_stdout_race.cc?rev=187875&r1=187874&r2=187875&view=diff
> ==============================================================================
> --- compiler-rt/trunk/lib/tsan/lit_tests/fd_stdout_race.cc (original)
> +++ compiler-rt/trunk/lib/tsan/lit_tests/fd_stdout_race.cc Wed Aug  7 04:02:37 2013
> @@ -1,4 +1,4 @@
> -// RUN: %clangxx_tsan -O1 %s -o %t && %t 2>&1 | FileCheck %s
> +// RUN: %clangxx_tsan -O1 %s -o %t && not %t 2>&1 | FileCheck %s
>  #include <pthread.h>
>  #include <stdio.h>
>  #include <unistd.h>
>
> Modified: compiler-rt/trunk/lib/tsan/lit_tests/free_race.c
> URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/lib/tsan/lit_tests/free_race.c?rev=187875&r1=187874&r2=187875&view=diff
> ==============================================================================
> --- compiler-rt/trunk/lib/tsan/lit_tests/free_race.c (original)
> +++ compiler-rt/trunk/lib/tsan/lit_tests/free_race.c Wed Aug  7 04:02:37 2013
> @@ -1,4 +1,4 @@
> -// RUN: %clang_tsan -O1 %s -o %t && %t 2>&1 | FileCheck %s
> +// RUN: %clang_tsan -O1 %s -o %t && not %t 2>&1 | FileCheck %s
>  #include <pthread.h>
>  #include <stdlib.h>
>  #include <stdio.h>
>
> Modified: compiler-rt/trunk/lib/tsan/lit_tests/free_race2.c
> URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/lib/tsan/lit_tests/free_race2.c?rev=187875&r1=187874&r2=187875&view=diff
> ==============================================================================
> --- compiler-rt/trunk/lib/tsan/lit_tests/free_race2.c (original)
> +++ compiler-rt/trunk/lib/tsan/lit_tests/free_race2.c Wed Aug  7 04:02:37 2013
> @@ -1,4 +1,4 @@
> -// RUN: %clang_tsan -O1 %s -o %t && %t 2>&1 | FileCheck %s
> +// RUN: %clang_tsan -O1 %s -o %t && not %t 2>&1 | FileCheck %s
>  #include <stdlib.h>
>
>  void __attribute__((noinline)) foo(int *mem) {
>
> Modified: compiler-rt/trunk/lib/tsan/lit_tests/global_race.cc
> URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/lib/tsan/lit_tests/global_race.cc?rev=187875&r1=187874&r2=187875&view=diff
> ==============================================================================
> --- compiler-rt/trunk/lib/tsan/lit_tests/global_race.cc (original)
> +++ compiler-rt/trunk/lib/tsan/lit_tests/global_race.cc Wed Aug  7 04:02:37 2013
> @@ -1,4 +1,4 @@
> -// RUN: %clangxx_tsan -O1 %s -o %t && %t 2>&1 | FileCheck %s
> +// RUN: %clangxx_tsan -O1 %s -o %t && not %t 2>&1 | FileCheck %s
>  #include <pthread.h>
>  #include <stdio.h>
>  #include <stddef.h>
>
> Modified: compiler-rt/trunk/lib/tsan/lit_tests/heap_race.cc
> URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/lib/tsan/lit_tests/heap_race.cc?rev=187875&r1=187874&r2=187875&view=diff
> ==============================================================================
> --- compiler-rt/trunk/lib/tsan/lit_tests/heap_race.cc (original)
> +++ compiler-rt/trunk/lib/tsan/lit_tests/heap_race.cc Wed Aug  7 04:02:37 2013
> @@ -1,4 +1,4 @@
> -// RUN: %clangxx_tsan -O1 %s -o %t && %t 2>&1 | FileCheck %s
> +// RUN: %clangxx_tsan -O1 %s -o %t && not %t 2>&1 | FileCheck %s
>  #include <pthread.h>
>  #include <stdio.h>
>  #include <stddef.h>
>
> Modified: compiler-rt/trunk/lib/tsan/lit_tests/inlined_memcpy_race.cc
> URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/lib/tsan/lit_tests/inlined_memcpy_race.cc?rev=187875&r1=187874&r2=187875&view=diff
> ==============================================================================
> --- compiler-rt/trunk/lib/tsan/lit_tests/inlined_memcpy_race.cc (original)
> +++ compiler-rt/trunk/lib/tsan/lit_tests/inlined_memcpy_race.cc Wed Aug  7 04:02:37 2013
> @@ -1,4 +1,4 @@
> -// RUN: %clangxx_tsan -O1 %s -o %t && %t 2>&1 | FileCheck %s
> +// RUN: %clangxx_tsan -O1 %s -o %t && not %t 2>&1 | FileCheck %s
>  #include <pthread.h>
>  #include <stddef.h>
>  #include <stdio.h>
>
> Modified: compiler-rt/trunk/lib/tsan/lit_tests/java_lock_rec_race.cc
> URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/lib/tsan/lit_tests/java_lock_rec_race.cc?rev=187875&r1=187874&r2=187875&view=diff
> ==============================================================================
> --- compiler-rt/trunk/lib/tsan/lit_tests/java_lock_rec_race.cc (original)
> +++ compiler-rt/trunk/lib/tsan/lit_tests/java_lock_rec_race.cc Wed Aug  7 04:02:37 2013
> @@ -1,4 +1,4 @@
> -// RUN: %clangxx_tsan -O1 %s -o %t && %t 2>&1 | FileCheck %s
> +// RUN: %clangxx_tsan -O1 %s -o %t && not %t 2>&1 | FileCheck %s
>  #include "java.h"
>  #include <unistd.h>
>
>
> Modified: compiler-rt/trunk/lib/tsan/lit_tests/java_race.cc
> URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/lib/tsan/lit_tests/java_race.cc?rev=187875&r1=187874&r2=187875&view=diff
> ==============================================================================
> --- compiler-rt/trunk/lib/tsan/lit_tests/java_race.cc (original)
> +++ compiler-rt/trunk/lib/tsan/lit_tests/java_race.cc Wed Aug  7 04:02:37 2013
> @@ -1,4 +1,4 @@
> -// RUN: %clangxx_tsan -O1 %s -o %t && %t 2>&1 | FileCheck %s
> +// RUN: %clangxx_tsan -O1 %s -o %t && not %t 2>&1 | FileCheck %s
>  #include "java.h"
>
>  void *Thread(void *p) {
>
> Modified: compiler-rt/trunk/lib/tsan/lit_tests/java_race_move.cc
> URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/lib/tsan/lit_tests/java_race_move.cc?rev=187875&r1=187874&r2=187875&view=diff
> ==============================================================================
> --- compiler-rt/trunk/lib/tsan/lit_tests/java_race_move.cc (original)
> +++ compiler-rt/trunk/lib/tsan/lit_tests/java_race_move.cc Wed Aug  7 04:02:37 2013
> @@ -1,4 +1,4 @@
> -// RUN: %clangxx_tsan -O1 %s -o %t && %t 2>&1 | FileCheck %s
> +// RUN: %clangxx_tsan -O1 %s -o %t && not %t 2>&1 | FileCheck %s
>  #include "java.h"
>
>  jptr varaddr;
>
> Modified: compiler-rt/trunk/lib/tsan/lit_tests/lit.cfg
> URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/lib/tsan/lit_tests/lit.cfg?rev=187875&r1=187874&r2=187875&view=diff
> ==============================================================================
> --- compiler-rt/trunk/lib/tsan/lit_tests/lit.cfg (original)
> +++ compiler-rt/trunk/lib/tsan/lit_tests/lit.cfg Wed Aug  7 04:02:37 2013
> @@ -77,5 +77,3 @@ config.suffixes = ['.c', '.cc', '.cpp']
>  # ThreadSanitizer tests are currently supported on Linux only.
>  if config.host_os not in ['Linux']:
>    config.unsupported = True
> -
> -config.pipefail = False
>
> Modified: compiler-rt/trunk/lib/tsan/lit_tests/load_shared_lib.cc
> URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/lib/tsan/lit_tests/load_shared_lib.cc?rev=187875&r1=187874&r2=187875&view=diff
> ==============================================================================
> --- compiler-rt/trunk/lib/tsan/lit_tests/load_shared_lib.cc (original)
> +++ compiler-rt/trunk/lib/tsan/lit_tests/load_shared_lib.cc Wed Aug  7 04:02:37 2013
> @@ -4,7 +4,7 @@
>
>  // RUN: %clangxx_tsan -O1 %p/SharedLibs/load_shared_lib-so.cc \
>  // RUN:     -fPIC -shared -o %t-so.so
> -// RUN: %clangxx_tsan -O1 %s -o %t && %t 2>&1 | FileCheck %s
> +// RUN: %clangxx_tsan -O1 %s -o %t && not %t 2>&1 | FileCheck %s
>
>  #include <dlfcn.h>
>  #include <pthread.h>
>
> Modified: compiler-rt/trunk/lib/tsan/lit_tests/longjmp3.cc
> URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/lib/tsan/lit_tests/longjmp3.cc?rev=187875&r1=187874&r2=187875&view=diff
> ==============================================================================
> --- compiler-rt/trunk/lib/tsan/lit_tests/longjmp3.cc (original)
> +++ compiler-rt/trunk/lib/tsan/lit_tests/longjmp3.cc Wed Aug  7 04:02:37 2013
> @@ -1,4 +1,4 @@
> -// RUN: %clang_tsan -O1 %s -o %t && %t 2>&1 | FileCheck %s
> +// RUN: %clang_tsan -O1 %s -o %t && not %t 2>&1 | FileCheck %s
>  #include <pthread.h>
>  #include <stdio.h>
>  #include <stdlib.h>
>
> Modified: compiler-rt/trunk/lib/tsan/lit_tests/longjmp4.cc
> URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/lib/tsan/lit_tests/longjmp4.cc?rev=187875&r1=187874&r2=187875&view=diff
> ==============================================================================
> --- compiler-rt/trunk/lib/tsan/lit_tests/longjmp4.cc (original)
> +++ compiler-rt/trunk/lib/tsan/lit_tests/longjmp4.cc Wed Aug  7 04:02:37 2013
> @@ -1,4 +1,4 @@
> -// RUN: %clang_tsan -O1 %s -o %t && %t 2>&1 | FileCheck %s
> +// RUN: %clang_tsan -O1 %s -o %t && not %t 2>&1 | FileCheck %s
>  #include <pthread.h>
>  #include <stdio.h>
>  #include <stdlib.h>
>
> Modified: compiler-rt/trunk/lib/tsan/lit_tests/malloc_stack.cc
> URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/lib/tsan/lit_tests/malloc_stack.cc?rev=187875&r1=187874&r2=187875&view=diff
> ==============================================================================
> --- compiler-rt/trunk/lib/tsan/lit_tests/malloc_stack.cc (original)
> +++ compiler-rt/trunk/lib/tsan/lit_tests/malloc_stack.cc Wed Aug  7 04:02:37 2013
> @@ -1,4 +1,4 @@
> -// RUN: %clang_tsan -O1 %s -o %t && %t 2>&1 | FileCheck %s
> +// RUN: %clang_tsan -O1 %s -o %t && not %t 2>&1 | FileCheck %s
>  #include <pthread.h>
>  #include <unistd.h>
>
>
> Modified: compiler-rt/trunk/lib/tsan/lit_tests/memcpy_race.cc
> URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/lib/tsan/lit_tests/memcpy_race.cc?rev=187875&r1=187874&r2=187875&view=diff
> ==============================================================================
> --- compiler-rt/trunk/lib/tsan/lit_tests/memcpy_race.cc (original)
> +++ compiler-rt/trunk/lib/tsan/lit_tests/memcpy_race.cc Wed Aug  7 04:02:37 2013
> @@ -1,4 +1,4 @@
> -// RUN: %clangxx_tsan -O1 %s -o %t && %t 2>&1 | FileCheck %s
> +// RUN: %clangxx_tsan -O1 %s -o %t && not %t 2>&1 | FileCheck %s
>  #include <pthread.h>
>  #include <stddef.h>
>  #include <stdio.h>
>
> Modified: compiler-rt/trunk/lib/tsan/lit_tests/mop_with_offset.cc
> URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/lib/tsan/lit_tests/mop_with_offset.cc?rev=187875&r1=187874&r2=187875&view=diff
> ==============================================================================
> --- compiler-rt/trunk/lib/tsan/lit_tests/mop_with_offset.cc (original)
> +++ compiler-rt/trunk/lib/tsan/lit_tests/mop_with_offset.cc Wed Aug  7 04:02:37 2013
> @@ -1,4 +1,4 @@
> -// RUN: %clangxx_tsan -O1 %s -o %t && %t 2>&1 | FileCheck %s
> +// RUN: %clangxx_tsan -O1 %s -o %t && not %t 2>&1 | FileCheck %s
>  #include <pthread.h>
>  #include <stddef.h>
>  #include <stdio.h>
>
> Modified: compiler-rt/trunk/lib/tsan/lit_tests/mop_with_offset2.cc
> URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/lib/tsan/lit_tests/mop_with_offset2.cc?rev=187875&r1=187874&r2=187875&view=diff
> ==============================================================================
> --- compiler-rt/trunk/lib/tsan/lit_tests/mop_with_offset2.cc (original)
> +++ compiler-rt/trunk/lib/tsan/lit_tests/mop_with_offset2.cc Wed Aug  7 04:02:37 2013
> @@ -1,4 +1,4 @@
> -// RUN: %clangxx_tsan -O1 %s -o %t && %t 2>&1 | FileCheck %s
> +// RUN: %clangxx_tsan -O1 %s -o %t && not %t 2>&1 | FileCheck %s
>  #include <pthread.h>
>  #include <stddef.h>
>  #include <stdio.h>
>
> Modified: compiler-rt/trunk/lib/tsan/lit_tests/mutex_destroy_locked.cc
> URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/lib/tsan/lit_tests/mutex_destroy_locked.cc?rev=187875&r1=187874&r2=187875&view=diff
> ==============================================================================
> --- compiler-rt/trunk/lib/tsan/lit_tests/mutex_destroy_locked.cc (original)
> +++ compiler-rt/trunk/lib/tsan/lit_tests/mutex_destroy_locked.cc Wed Aug  7 04:02:37 2013
> @@ -1,4 +1,4 @@
> -// RUN: %clangxx_tsan -O1 %s -o %t && %t 2>&1 | FileCheck %s
> +// RUN: %clangxx_tsan -O1 %s -o %t && not %t 2>&1 | FileCheck %s
>  #include <pthread.h>
>  #include <unistd.h>
>
>
> Modified: compiler-rt/trunk/lib/tsan/lit_tests/mutexset1.cc
> URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/lib/tsan/lit_tests/mutexset1.cc?rev=187875&r1=187874&r2=187875&view=diff
> ==============================================================================
> --- compiler-rt/trunk/lib/tsan/lit_tests/mutexset1.cc (original)
> +++ compiler-rt/trunk/lib/tsan/lit_tests/mutexset1.cc Wed Aug  7 04:02:37 2013
> @@ -1,4 +1,4 @@
> -// RUN: %clangxx_tsan -O1 %s -o %t && %t 2>&1 | FileCheck %s
> +// RUN: %clangxx_tsan -O1 %s -o %t && not %t 2>&1 | FileCheck %s
>  #include <pthread.h>
>  #include <stdio.h>
>  #include <unistd.h>
>
> Modified: compiler-rt/trunk/lib/tsan/lit_tests/mutexset2.cc
> URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/lib/tsan/lit_tests/mutexset2.cc?rev=187875&r1=187874&r2=187875&view=diff
> ==============================================================================
> --- compiler-rt/trunk/lib/tsan/lit_tests/mutexset2.cc (original)
> +++ compiler-rt/trunk/lib/tsan/lit_tests/mutexset2.cc Wed Aug  7 04:02:37 2013
> @@ -1,4 +1,4 @@
> -// RUN: %clangxx_tsan -O1 %s -o %t && %t 2>&1 | FileCheck %s
> +// RUN: %clangxx_tsan -O1 %s -o %t && not %t 2>&1 | FileCheck %s
>  #include <pthread.h>
>  #include <stdio.h>
>  #include <unistd.h>
>
> Modified: compiler-rt/trunk/lib/tsan/lit_tests/mutexset3.cc
> URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/lib/tsan/lit_tests/mutexset3.cc?rev=187875&r1=187874&r2=187875&view=diff
> ==============================================================================
> --- compiler-rt/trunk/lib/tsan/lit_tests/mutexset3.cc (original)
> +++ compiler-rt/trunk/lib/tsan/lit_tests/mutexset3.cc Wed Aug  7 04:02:37 2013
> @@ -1,4 +1,4 @@
> -// RUN: %clangxx_tsan -O1 %s -o %t && %t 2>&1 | FileCheck %s
> +// RUN: %clangxx_tsan -O1 %s -o %t && not %t 2>&1 | FileCheck %s
>  #include <pthread.h>
>  #include <stdio.h>
>  #include <unistd.h>
>
> Modified: compiler-rt/trunk/lib/tsan/lit_tests/mutexset4.cc
> URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/lib/tsan/lit_tests/mutexset4.cc?rev=187875&r1=187874&r2=187875&view=diff
> ==============================================================================
> --- compiler-rt/trunk/lib/tsan/lit_tests/mutexset4.cc (original)
> +++ compiler-rt/trunk/lib/tsan/lit_tests/mutexset4.cc Wed Aug  7 04:02:37 2013
> @@ -1,4 +1,4 @@
> -// RUN: %clangxx_tsan -O1 %s -o %t && %t 2>&1 | FileCheck %s
> +// RUN: %clangxx_tsan -O1 %s -o %t && not %t 2>&1 | FileCheck %s
>  #include <pthread.h>
>  #include <stdio.h>
>  #include <unistd.h>
>
> Modified: compiler-rt/trunk/lib/tsan/lit_tests/mutexset5.cc
> URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/lib/tsan/lit_tests/mutexset5.cc?rev=187875&r1=187874&r2=187875&view=diff
> ==============================================================================
> --- compiler-rt/trunk/lib/tsan/lit_tests/mutexset5.cc (original)
> +++ compiler-rt/trunk/lib/tsan/lit_tests/mutexset5.cc Wed Aug  7 04:02:37 2013
> @@ -1,4 +1,4 @@
> -// RUN: %clangxx_tsan -O1 %s -o %t && %t 2>&1 | FileCheck %s
> +// RUN: %clangxx_tsan -O1 %s -o %t && not %t 2>&1 | FileCheck %s
>  #include <pthread.h>
>  #include <stdio.h>
>  #include <unistd.h>
>
> Modified: compiler-rt/trunk/lib/tsan/lit_tests/mutexset6.cc
> URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/lib/tsan/lit_tests/mutexset6.cc?rev=187875&r1=187874&r2=187875&view=diff
> ==============================================================================
> --- compiler-rt/trunk/lib/tsan/lit_tests/mutexset6.cc (original)
> +++ compiler-rt/trunk/lib/tsan/lit_tests/mutexset6.cc Wed Aug  7 04:02:37 2013
> @@ -1,4 +1,4 @@
> -// RUN: %clangxx_tsan -O1 %s -o %t && %t 2>&1 | FileCheck %s
> +// RUN: %clangxx_tsan -O1 %s -o %t && not %t 2>&1 | FileCheck %s
>  #include <pthread.h>
>  #include <stdio.h>
>  #include <unistd.h>
>
> Modified: compiler-rt/trunk/lib/tsan/lit_tests/mutexset7.cc
> URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/lib/tsan/lit_tests/mutexset7.cc?rev=187875&r1=187874&r2=187875&view=diff
> ==============================================================================
> --- compiler-rt/trunk/lib/tsan/lit_tests/mutexset7.cc (original)
> +++ compiler-rt/trunk/lib/tsan/lit_tests/mutexset7.cc Wed Aug  7 04:02:37 2013
> @@ -1,4 +1,4 @@
> -// RUN: %clangxx_tsan -O1 %s -o %t && %t 2>&1 | FileCheck %s
> +// RUN: %clangxx_tsan -O1 %s -o %t && not %t 2>&1 | FileCheck %s
>  #include <pthread.h>
>  #include <stdio.h>
>  #include <unistd.h>
>
> Modified: compiler-rt/trunk/lib/tsan/lit_tests/mutexset8.cc
> URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/lib/tsan/lit_tests/mutexset8.cc?rev=187875&r1=187874&r2=187875&view=diff
> ==============================================================================
> --- compiler-rt/trunk/lib/tsan/lit_tests/mutexset8.cc (original)
> +++ compiler-rt/trunk/lib/tsan/lit_tests/mutexset8.cc Wed Aug  7 04:02:37 2013
> @@ -1,4 +1,4 @@
> -// RUN: %clangxx_tsan -O1 %s -o %t && %t 2>&1 | FileCheck %s
> +// RUN: %clangxx_tsan -O1 %s -o %t && not %t 2>&1 | FileCheck %s
>  #include <pthread.h>
>  #include <stdio.h>
>  #include <unistd.h>
>
> Modified: compiler-rt/trunk/lib/tsan/lit_tests/oob_race.cc
> URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/lib/tsan/lit_tests/oob_race.cc?rev=187875&r1=187874&r2=187875&view=diff
> ==============================================================================
> --- compiler-rt/trunk/lib/tsan/lit_tests/oob_race.cc (original)
> +++ compiler-rt/trunk/lib/tsan/lit_tests/oob_race.cc Wed Aug  7 04:02:37 2013
> @@ -1,4 +1,4 @@
> -// RUN: %clangxx_tsan -O1 %s -o %t && %t 2>&1 | FileCheck %s
> +// RUN: %clangxx_tsan -O1 %s -o %t && not %t 2>&1 | FileCheck %s
>  #include <pthread.h>
>  #include <stdio.h>
>
>
> Modified: compiler-rt/trunk/lib/tsan/lit_tests/race_on_barrier.c
> URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/lib/tsan/lit_tests/race_on_barrier.c?rev=187875&r1=187874&r2=187875&view=diff
> ==============================================================================
> --- compiler-rt/trunk/lib/tsan/lit_tests/race_on_barrier.c (original)
> +++ compiler-rt/trunk/lib/tsan/lit_tests/race_on_barrier.c Wed Aug  7 04:02:37 2013
> @@ -1,4 +1,4 @@
> -// RUN: %clang_tsan -O1 %s -o %t && %t 2>&1 | FileCheck %s
> +// RUN: %clang_tsan -O1 %s -o %t && not %t 2>&1 | FileCheck %s
>  #include <pthread.h>
>  #include <stdio.h>
>  #include <stddef.h>
>
> Modified: compiler-rt/trunk/lib/tsan/lit_tests/race_on_barrier2.c
> URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/lib/tsan/lit_tests/race_on_barrier2.c?rev=187875&r1=187874&r2=187875&view=diff
> ==============================================================================
> --- compiler-rt/trunk/lib/tsan/lit_tests/race_on_barrier2.c (original)
> +++ compiler-rt/trunk/lib/tsan/lit_tests/race_on_barrier2.c Wed Aug  7 04:02:37 2013
> @@ -1,4 +1,4 @@
> -// RUN: %clang_tsan -O1 %s -o %t && %t 2>&1 | FileCheck %s
> +// RUN: %clang_tsan -O1 %s -o %t && not %t 2>&1 | FileCheck %s
>  #include <pthread.h>
>  #include <stdio.h>
>  #include <stddef.h>
>
> Modified: compiler-rt/trunk/lib/tsan/lit_tests/race_on_heap.cc
> URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/lib/tsan/lit_tests/race_on_heap.cc?rev=187875&r1=187874&r2=187875&view=diff
> ==============================================================================
> --- compiler-rt/trunk/lib/tsan/lit_tests/race_on_heap.cc (original)
> +++ compiler-rt/trunk/lib/tsan/lit_tests/race_on_heap.cc Wed Aug  7 04:02:37 2013
> @@ -1,4 +1,4 @@
> -// RUN: %clangxx_tsan -O1 %s -o %t && %t 2>&1 | FileCheck %s
> +// RUN: %clangxx_tsan -O1 %s -o %t && not %t 2>&1 | FileCheck %s
>  #include <pthread.h>
>  #include <stdlib.h>
>  #include <stdio.h>
>
> Modified: compiler-rt/trunk/lib/tsan/lit_tests/race_on_mutex.c
> URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/lib/tsan/lit_tests/race_on_mutex.c?rev=187875&r1=187874&r2=187875&view=diff
> ==============================================================================
> --- compiler-rt/trunk/lib/tsan/lit_tests/race_on_mutex.c (original)
> +++ compiler-rt/trunk/lib/tsan/lit_tests/race_on_mutex.c Wed Aug  7 04:02:37 2013
> @@ -1,4 +1,4 @@
> -// RUN: %clang_tsan -O1 %s -o %t && %t 2>&1 | FileCheck %s
> +// RUN: %clang_tsan -O1 %s -o %t && not %t 2>&1 | FileCheck %s
>  #include <pthread.h>
>  #include <stdio.h>
>  #include <stddef.h>
>
> Modified: compiler-rt/trunk/lib/tsan/lit_tests/race_on_mutex2.c
> URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/lib/tsan/lit_tests/race_on_mutex2.c?rev=187875&r1=187874&r2=187875&view=diff
> ==============================================================================
> --- compiler-rt/trunk/lib/tsan/lit_tests/race_on_mutex2.c (original)
> +++ compiler-rt/trunk/lib/tsan/lit_tests/race_on_mutex2.c Wed Aug  7 04:02:37 2013
> @@ -1,4 +1,4 @@
> -// RUN: %clang_tsan -O1 %s -o %t && %t 2>&1 | FileCheck %s
> +// RUN: %clang_tsan -O1 %s -o %t && not %t 2>&1 | FileCheck %s
>  #include <pthread.h>
>  #include <stdio.h>
>  #include <stddef.h>
>
> Modified: compiler-rt/trunk/lib/tsan/lit_tests/race_on_read.cc
> URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/lib/tsan/lit_tests/race_on_read.cc?rev=187875&r1=187874&r2=187875&view=diff
> ==============================================================================
> --- compiler-rt/trunk/lib/tsan/lit_tests/race_on_read.cc (original)
> +++ compiler-rt/trunk/lib/tsan/lit_tests/race_on_read.cc Wed Aug  7 04:02:37 2013
> @@ -1,4 +1,4 @@
> -// RUN: %clangxx_tsan -O1 %s -o %t && %t 2>&1 | FileCheck %s
> +// RUN: %clangxx_tsan -O1 %s -o %t && not %t 2>&1 | FileCheck %s
>  #include <pthread.h>
>  #include <stdio.h>
>  #include <unistd.h>
>
> Modified: compiler-rt/trunk/lib/tsan/lit_tests/race_on_write.cc
> URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/lib/tsan/lit_tests/race_on_write.cc?rev=187875&r1=187874&r2=187875&view=diff
> ==============================================================================
> --- compiler-rt/trunk/lib/tsan/lit_tests/race_on_write.cc (original)
> +++ compiler-rt/trunk/lib/tsan/lit_tests/race_on_write.cc Wed Aug  7 04:02:37 2013
> @@ -1,4 +1,4 @@
> -// RUN: %clangxx_tsan -O1 %s -o %t && %t 2>&1 | FileCheck %s
> +// RUN: %clangxx_tsan -O1 %s -o %t && not %t 2>&1 | FileCheck %s
>  #include <pthread.h>
>  #include <stdio.h>
>  #include <unistd.h>
>
> Modified: compiler-rt/trunk/lib/tsan/lit_tests/race_with_finished_thread.cc
> URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/lib/tsan/lit_tests/race_with_finished_thread.cc?rev=187875&r1=187874&r2=187875&view=diff
> ==============================================================================
> --- compiler-rt/trunk/lib/tsan/lit_tests/race_with_finished_thread.cc (original)
> +++ compiler-rt/trunk/lib/tsan/lit_tests/race_with_finished_thread.cc Wed Aug  7 04:02:37 2013
> @@ -1,4 +1,4 @@
> -// RUN: %clangxx_tsan -O1 %s -o %t && %t 2>&1 | FileCheck %s
> +// RUN: %clangxx_tsan -O1 %s -o %t && not %t 2>&1 | FileCheck %s
>  #include <pthread.h>
>  #include <stddef.h>
>  #include <stdio.h>
>
> Modified: compiler-rt/trunk/lib/tsan/lit_tests/signal_errno.cc
> URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/lib/tsan/lit_tests/signal_errno.cc?rev=187875&r1=187874&r2=187875&view=diff
> ==============================================================================
> --- compiler-rt/trunk/lib/tsan/lit_tests/signal_errno.cc (original)
> +++ compiler-rt/trunk/lib/tsan/lit_tests/signal_errno.cc Wed Aug  7 04:02:37 2013
> @@ -1,4 +1,4 @@
> -// RUN: %clang_tsan -O1 %s -o %t && %t 2>&1 | FileCheck %s
> +// RUN: %clang_tsan -O1 %s -o %t && not %t 2>&1 | FileCheck %s
>  #include <pthread.h>
>  #include <stdio.h>
>  #include <stdlib.h>
>
> Modified: compiler-rt/trunk/lib/tsan/lit_tests/signal_malloc.cc
> URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/lib/tsan/lit_tests/signal_malloc.cc?rev=187875&r1=187874&r2=187875&view=diff
> ==============================================================================
> --- compiler-rt/trunk/lib/tsan/lit_tests/signal_malloc.cc (original)
> +++ compiler-rt/trunk/lib/tsan/lit_tests/signal_malloc.cc Wed Aug  7 04:02:37 2013
> @@ -1,4 +1,4 @@
> -// RUN: %clang_tsan -O1 %s -o %t && %t 2>&1 | FileCheck %s
> +// RUN: %clang_tsan -O1 %s -o %t && not %t 2>&1 | FileCheck %s
>  #include <stdio.h>
>  #include <stdlib.h>
>  #include <signal.h>
>
> Modified: compiler-rt/trunk/lib/tsan/lit_tests/sigsuspend.cc
> URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/lib/tsan/lit_tests/sigsuspend.cc?rev=187875&r1=187874&r2=187875&view=diff
> ==============================================================================
> --- compiler-rt/trunk/lib/tsan/lit_tests/sigsuspend.cc (original)
> +++ compiler-rt/trunk/lib/tsan/lit_tests/sigsuspend.cc Wed Aug  7 04:02:37 2013
> @@ -1,4 +1,4 @@
> -// RUN: %clangxx_tsan -O1 %s -o %t && %t 2>&1 | FileCheck %s
> +// RUN: %clangxx_tsan -O1 %s -o %t && not %t 2>&1 | FileCheck %s
>  #include <assert.h>
>  #include <stdlib.h>
>  #include <signal.h>
>
> Modified: compiler-rt/trunk/lib/tsan/lit_tests/simple_race.c
> URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/lib/tsan/lit_tests/simple_race.c?rev=187875&r1=187874&r2=187875&view=diff
> ==============================================================================
> --- compiler-rt/trunk/lib/tsan/lit_tests/simple_race.c (original)
> +++ compiler-rt/trunk/lib/tsan/lit_tests/simple_race.c Wed Aug  7 04:02:37 2013
> @@ -1,4 +1,4 @@
> -// RUN: %clang_tsan -O1 %s -o %t && %t 2>&1 | FileCheck %s
> +// RUN: %clang_tsan -O1 %s -o %t && not %t 2>&1 | FileCheck %s
>  #include <pthread.h>
>  #include <stdio.h>
>
>
> Modified: compiler-rt/trunk/lib/tsan/lit_tests/simple_race.cc
> URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/lib/tsan/lit_tests/simple_race.cc?rev=187875&r1=187874&r2=187875&view=diff
> ==============================================================================
> --- compiler-rt/trunk/lib/tsan/lit_tests/simple_race.cc (original)
> +++ compiler-rt/trunk/lib/tsan/lit_tests/simple_race.cc Wed Aug  7 04:02:37 2013
> @@ -1,4 +1,4 @@
> -// RUN: %clangxx_tsan -O1 %s -o %t && %t 2>&1 | FileCheck %s
> +// RUN: %clangxx_tsan -O1 %s -o %t && not %t 2>&1 | FileCheck %s
>  #include <pthread.h>
>  #include <stdio.h>
>
>
> Modified: compiler-rt/trunk/lib/tsan/lit_tests/simple_stack.c
> URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/lib/tsan/lit_tests/simple_stack.c?rev=187875&r1=187874&r2=187875&view=diff
> ==============================================================================
> --- compiler-rt/trunk/lib/tsan/lit_tests/simple_stack.c (original)
> +++ compiler-rt/trunk/lib/tsan/lit_tests/simple_stack.c Wed Aug  7 04:02:37 2013
> @@ -1,4 +1,4 @@
> -// RUN: %clang_tsan -O1 %s -o %t && %t 2>&1 | FileCheck %s
> +// RUN: %clang_tsan -O1 %s -o %t && not %t 2>&1 | FileCheck %s
>  #include <pthread.h>
>  #include <stdio.h>
>  #include <unistd.h>
>
> Modified: compiler-rt/trunk/lib/tsan/lit_tests/simple_stack2.cc
> URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/lib/tsan/lit_tests/simple_stack2.cc?rev=187875&r1=187874&r2=187875&view=diff
> ==============================================================================
> --- compiler-rt/trunk/lib/tsan/lit_tests/simple_stack2.cc (original)
> +++ compiler-rt/trunk/lib/tsan/lit_tests/simple_stack2.cc Wed Aug  7 04:02:37 2013
> @@ -1,4 +1,4 @@
> -// RUN: %clangxx_tsan -O1 %s -o %t && %t 2>&1 | FileCheck %s
> +// RUN: %clangxx_tsan -O1 %s -o %t && not %t 2>&1 | FileCheck %s
>  #include <pthread.h>
>  #include <stdio.h>
>  #include <unistd.h>
>
> Modified: compiler-rt/trunk/lib/tsan/lit_tests/sleep_sync.cc
> URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/lib/tsan/lit_tests/sleep_sync.cc?rev=187875&r1=187874&r2=187875&view=diff
> ==============================================================================
> --- compiler-rt/trunk/lib/tsan/lit_tests/sleep_sync.cc (original)
> +++ compiler-rt/trunk/lib/tsan/lit_tests/sleep_sync.cc Wed Aug  7 04:02:37 2013
> @@ -1,4 +1,4 @@
> -// RUN: %clangxx_tsan -O1 %s -o %t && %t 2>&1 | FileCheck %s
> +// RUN: %clangxx_tsan -O1 %s -o %t && not %t 2>&1 | FileCheck %s
>  #include <pthread.h>
>  #include <unistd.h>
>
>
> Modified: compiler-rt/trunk/lib/tsan/lit_tests/sleep_sync2.cc
> URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/lib/tsan/lit_tests/sleep_sync2.cc?rev=187875&r1=187874&r2=187875&view=diff
> ==============================================================================
> --- compiler-rt/trunk/lib/tsan/lit_tests/sleep_sync2.cc (original)
> +++ compiler-rt/trunk/lib/tsan/lit_tests/sleep_sync2.cc Wed Aug  7 04:02:37 2013
> @@ -1,4 +1,4 @@
> -// RUN: %clangxx_tsan -O1 %s -o %t && %t 2>&1 | FileCheck %s
> +// RUN: %clangxx_tsan -O1 %s -o %t && not %t 2>&1 | FileCheck %s
>  #include <pthread.h>
>  #include <unistd.h>
>
>
> Modified: compiler-rt/trunk/lib/tsan/lit_tests/stack_race.cc
> URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/lib/tsan/lit_tests/stack_race.cc?rev=187875&r1=187874&r2=187875&view=diff
> ==============================================================================
> --- compiler-rt/trunk/lib/tsan/lit_tests/stack_race.cc (original)
> +++ compiler-rt/trunk/lib/tsan/lit_tests/stack_race.cc Wed Aug  7 04:02:37 2013
> @@ -1,4 +1,4 @@
> -// RUN: %clangxx_tsan -O1 %s -o %t && %t 2>&1 | FileCheck %s
> +// RUN: %clangxx_tsan -O1 %s -o %t && not %t 2>&1 | FileCheck %s
>  #include <pthread.h>
>  #include <stddef.h>
>
>
> Modified: compiler-rt/trunk/lib/tsan/lit_tests/stack_race2.cc
> URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/lib/tsan/lit_tests/stack_race2.cc?rev=187875&r1=187874&r2=187875&view=diff
> ==============================================================================
> --- compiler-rt/trunk/lib/tsan/lit_tests/stack_race2.cc (original)
> +++ compiler-rt/trunk/lib/tsan/lit_tests/stack_race2.cc Wed Aug  7 04:02:37 2013
> @@ -1,4 +1,4 @@
> -// RUN: %clangxx_tsan -O1 %s -o %t && %t 2>&1 | FileCheck %s
> +// RUN: %clangxx_tsan -O1 %s -o %t && not %t 2>&1 | FileCheck %s
>  #include <pthread.h>
>  #include <stddef.h>
>  #include <unistd.h>
>
> Modified: compiler-rt/trunk/lib/tsan/lit_tests/static_init3.cc
> URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/lib/tsan/lit_tests/static_init3.cc?rev=187875&r1=187874&r2=187875&view=diff
> ==============================================================================
> --- compiler-rt/trunk/lib/tsan/lit_tests/static_init3.cc (original)
> +++ compiler-rt/trunk/lib/tsan/lit_tests/static_init3.cc Wed Aug  7 04:02:37 2013
> @@ -1,4 +1,4 @@
> -// RUN: %clangxx_tsan -O1 %s -o %t && %t 2>&1 | FileCheck %s
> +// RUN: %clangxx_tsan -O1 %s -o %t && not %t 2>&1 | FileCheck %s
>  #include <pthread.h>
>  #include <stdlib.h>
>  #include <stdio.h>
>
> Modified: compiler-rt/trunk/lib/tsan/lit_tests/suppress_same_address.cc
> URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/lib/tsan/lit_tests/suppress_same_address.cc?rev=187875&r1=187874&r2=187875&view=diff
> ==============================================================================
> --- compiler-rt/trunk/lib/tsan/lit_tests/suppress_same_address.cc (original)
> +++ compiler-rt/trunk/lib/tsan/lit_tests/suppress_same_address.cc Wed Aug  7 04:02:37 2013
> @@ -1,4 +1,4 @@
> -// RUN: %clangxx_tsan -O1 %s -o %t && %t 2>&1 | FileCheck %s
> +// RUN: %clangxx_tsan -O1 %s -o %t && not %t 2>&1 | FileCheck %s
>  #include <pthread.h>
>
>  int X;
>
> Modified: compiler-rt/trunk/lib/tsan/lit_tests/suppress_same_stacks.cc
> URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/lib/tsan/lit_tests/suppress_same_stacks.cc?rev=187875&r1=187874&r2=187875&view=diff
> ==============================================================================
> --- compiler-rt/trunk/lib/tsan/lit_tests/suppress_same_stacks.cc (original)
> +++ compiler-rt/trunk/lib/tsan/lit_tests/suppress_same_stacks.cc Wed Aug  7 04:02:37 2013
> @@ -1,4 +1,4 @@
> -// RUN: %clangxx_tsan -O1 %s -o %t && %t 2>&1 | FileCheck %s
> +// RUN: %clangxx_tsan -O1 %s -o %t && not %t 2>&1 | FileCheck %s
>  #include <pthread.h>
>
>  volatile int N;  // Prevent loop unrolling.
>
> Modified: compiler-rt/trunk/lib/tsan/lit_tests/thread_leak3.c
> URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/lib/tsan/lit_tests/thread_leak3.c?rev=187875&r1=187874&r2=187875&view=diff
> ==============================================================================
> --- compiler-rt/trunk/lib/tsan/lit_tests/thread_leak3.c (original)
> +++ compiler-rt/trunk/lib/tsan/lit_tests/thread_leak3.c Wed Aug  7 04:02:37 2013
> @@ -1,4 +1,4 @@
> -// RUN: %clang_tsan -O1 %s -o %t && %t 2>&1 | FileCheck %s
> +// RUN: %clang_tsan -O1 %s -o %t && not %t 2>&1 | FileCheck %s
>  #include <pthread.h>
>  #include <unistd.h>
>
>
> Modified: compiler-rt/trunk/lib/tsan/lit_tests/thread_leak5.c
> URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/lib/tsan/lit_tests/thread_leak5.c?rev=187875&r1=187874&r2=187875&view=diff
> ==============================================================================
> --- compiler-rt/trunk/lib/tsan/lit_tests/thread_leak5.c (original)
> +++ compiler-rt/trunk/lib/tsan/lit_tests/thread_leak5.c Wed Aug  7 04:02:37 2013
> @@ -1,4 +1,4 @@
> -// RUN: %clang_tsan -O1 %s -o %t && %t 2>&1 | FileCheck %s
> +// RUN: %clang_tsan -O1 %s -o %t && not %t 2>&1 | FileCheck %s
>  #include <pthread.h>
>  #include <unistd.h>
>
>
> Modified: compiler-rt/trunk/lib/tsan/lit_tests/thread_name.cc
> URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/lib/tsan/lit_tests/thread_name.cc?rev=187875&r1=187874&r2=187875&view=diff
> ==============================================================================
> --- compiler-rt/trunk/lib/tsan/lit_tests/thread_name.cc (original)
> +++ compiler-rt/trunk/lib/tsan/lit_tests/thread_name.cc Wed Aug  7 04:02:37 2013
> @@ -1,4 +1,4 @@
> -// RUN: %clangxx_tsan -O1 %s -o %t && %t 2>&1 | FileCheck %s
> +// RUN: %clangxx_tsan -O1 %s -o %t && not %t 2>&1 | FileCheck %s
>  #include <pthread.h>
>  #include <stdio.h>
>  #include <unistd.h>
>
> Modified: compiler-rt/trunk/lib/tsan/lit_tests/tiny_race.c
> URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/lib/tsan/lit_tests/tiny_race.c?rev=187875&r1=187874&r2=187875&view=diff
> ==============================================================================
> --- compiler-rt/trunk/lib/tsan/lit_tests/tiny_race.c (original)
> +++ compiler-rt/trunk/lib/tsan/lit_tests/tiny_race.c Wed Aug  7 04:02:37 2013
> @@ -1,4 +1,4 @@
> -// RUN: %clang_tsan -O1 %s -o %t && %t 2>&1 | FileCheck %s
> +// RUN: %clang_tsan -O1 %s -o %t && not %t 2>&1 | FileCheck %s
>  #include <pthread.h>
>  #include <unistd.h>
>
>
> Modified: compiler-rt/trunk/lib/tsan/lit_tests/tls_race.cc
> URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/lib/tsan/lit_tests/tls_race.cc?rev=187875&r1=187874&r2=187875&view=diff
> ==============================================================================
> --- compiler-rt/trunk/lib/tsan/lit_tests/tls_race.cc (original)
> +++ compiler-rt/trunk/lib/tsan/lit_tests/tls_race.cc Wed Aug  7 04:02:37 2013
> @@ -1,4 +1,4 @@
> -// RUN: %clangxx_tsan -O1 %s -o %t && %t 2>&1 | FileCheck %s
> +// RUN: %clangxx_tsan -O1 %s -o %t && not %t 2>&1 | FileCheck %s
>  #include <pthread.h>
>  #include <stddef.h>
>
>
> Modified: compiler-rt/trunk/lib/tsan/lit_tests/tls_race2.cc
> URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/lib/tsan/lit_tests/tls_race2.cc?rev=187875&r1=187874&r2=187875&view=diff
> ==============================================================================
> --- compiler-rt/trunk/lib/tsan/lit_tests/tls_race2.cc (original)
> +++ compiler-rt/trunk/lib/tsan/lit_tests/tls_race2.cc Wed Aug  7 04:02:37 2013
> @@ -1,4 +1,4 @@
> -// RUN: %clangxx_tsan -O1 %s -o %t && %t 2>&1 | FileCheck %s
> +// RUN: %clangxx_tsan -O1 %s -o %t && not %t 2>&1 | FileCheck %s
>  #include <pthread.h>
>  #include <stddef.h>
>  #include <unistd.h>
>
> Modified: compiler-rt/trunk/lib/tsan/lit_tests/unaligned_race.cc
> URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/lib/tsan/lit_tests/unaligned_race.cc?rev=187875&r1=187874&r2=187875&view=diff
> ==============================================================================
> --- compiler-rt/trunk/lib/tsan/lit_tests/unaligned_race.cc (original)
> +++ compiler-rt/trunk/lib/tsan/lit_tests/unaligned_race.cc Wed Aug  7 04:02:37 2013
> @@ -1,4 +1,4 @@
> -// RUN: %clangxx_tsan -O1 %s -o %t && %t 2>&1 | FileCheck %s
> +// RUN: %clangxx_tsan -O1 %s -o %t && not %t 2>&1 | FileCheck %s
>  #include <pthread.h>
>  #include <stdio.h>
>  #include <stdlib.h>
>
> Modified: compiler-rt/trunk/lib/tsan/lit_tests/vptr_harmful_race.cc
> URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/lib/tsan/lit_tests/vptr_harmful_race.cc?rev=187875&r1=187874&r2=187875&view=diff
> ==============================================================================
> --- compiler-rt/trunk/lib/tsan/lit_tests/vptr_harmful_race.cc (original)
> +++ compiler-rt/trunk/lib/tsan/lit_tests/vptr_harmful_race.cc Wed Aug  7 04:02:37 2013
> @@ -1,4 +1,4 @@
> -// RUN: %clangxx_tsan -O1 %s -o %t && %t 2>&1 | FileCheck %s
> +// RUN: %clangxx_tsan -O1 %s -o %t && not %t 2>&1 | FileCheck %s
>  #include <pthread.h>
>  #include <semaphore.h>
>  #include <stdio.h>
>
> Modified: compiler-rt/trunk/lib/tsan/lit_tests/vptr_harmful_race2.cc
> URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/lib/tsan/lit_tests/vptr_harmful_race2.cc?rev=187875&r1=187874&r2=187875&view=diff
> ==============================================================================
> --- compiler-rt/trunk/lib/tsan/lit_tests/vptr_harmful_race2.cc (original)
> +++ compiler-rt/trunk/lib/tsan/lit_tests/vptr_harmful_race2.cc Wed Aug  7 04:02:37 2013
> @@ -1,4 +1,4 @@
> -// RUN: %clangxx_tsan -O1 %s -o %t && %t 2>&1 | FileCheck %s
> +// RUN: %clangxx_tsan -O1 %s -o %t && not %t 2>&1 | FileCheck %s
>  #include <pthread.h>
>  #include <semaphore.h>
>  #include <stdio.h>
>
> Modified: compiler-rt/trunk/lib/tsan/lit_tests/write_in_reader_lock.cc
> URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/lib/tsan/lit_tests/write_in_reader_lock.cc?rev=187875&r1=187874&r2=187875&view=diff
> ==============================================================================
> --- compiler-rt/trunk/lib/tsan/lit_tests/write_in_reader_lock.cc (original)
> +++ compiler-rt/trunk/lib/tsan/lit_tests/write_in_reader_lock.cc Wed Aug  7 04:02:37 2013
> @@ -1,4 +1,4 @@
> -// RUN: %clangxx_tsan -O1 %s -o %t && %t 2>&1 | FileCheck %s
> +// RUN: %clangxx_tsan -O1 %s -o %t && not %t 2>&1 | FileCheck %s
>  #include <pthread.h>
>  #include <unistd.h>
>
>
>
> _______________________________________________
> llvm-commits mailing list
> llvm-commits at cs.uiuc.edu
> http://lists.cs.uiuc.edu/mailman/listinfo/llvm-commits



More information about the llvm-commits mailing list