Index: compiler-rt/trunk/test/tsan/longjmp.cc =================================================================== --- compiler-rt/trunk/test/tsan/longjmp.cc +++ compiler-rt/trunk/test/tsan/longjmp.cc @@ -1,4 +1,8 @@ // RUN: %clang_tsan -O1 %s -o %t && %run %t 2>&1 | FileCheck %s + +// Longjmp assembly has not been implemented for mips64 yet +// XFAIL: mips64 + #include #include #include Index: compiler-rt/trunk/test/tsan/longjmp2.cc =================================================================== --- compiler-rt/trunk/test/tsan/longjmp2.cc +++ compiler-rt/trunk/test/tsan/longjmp2.cc @@ -1,4 +1,8 @@ // RUN: %clang_tsan -O1 %s -o %t && %run %t 2>&1 | FileCheck %s + +// Longjmp assembly has not been implemented for mips64 yet +// XFAIL: mips64 + #include #include #include Index: compiler-rt/trunk/test/tsan/longjmp3.cc =================================================================== --- compiler-rt/trunk/test/tsan/longjmp3.cc +++ compiler-rt/trunk/test/tsan/longjmp3.cc @@ -1,4 +1,8 @@ // RUN: %clang_tsan -O1 %s -o %t && %deflake %run %t | FileCheck %s + +// Longjmp assembly has not been implemented for mips64 yet +// XFAIL: mips64 + #include #include #include Index: compiler-rt/trunk/test/tsan/longjmp4.cc =================================================================== --- compiler-rt/trunk/test/tsan/longjmp4.cc +++ compiler-rt/trunk/test/tsan/longjmp4.cc @@ -1,4 +1,8 @@ // RUN: %clang_tsan -O1 %s -o %t && %deflake %run %t | FileCheck %s + +// Longjmp assembly has not been implemented for mips64 yet +// XFAIL: mips64 + #include #include #include Index: compiler-rt/trunk/test/tsan/signal_longjmp.cc =================================================================== --- compiler-rt/trunk/test/tsan/signal_longjmp.cc +++ compiler-rt/trunk/test/tsan/signal_longjmp.cc @@ -3,6 +3,9 @@ // Test case for longjumping out of signal handler: // https://code.google.com/p/thread-sanitizer/issues/detail?id=75 +// Longjmp assembly has not been implemented for mips64 yet +// XFAIL: mips64 + #include #include #include