[compiler-rt] r279048 - [mips][msan] Fix all the XPASSes following r278793 and r278795

Daniel Sanders via llvm-commits llvm-commits at lists.llvm.org
Thu Aug 18 03:50:47 PDT 2016


Author: dsanders
Date: Thu Aug 18 05:50:46 2016
New Revision: 279048

URL: http://llvm.org/viewvc/llvm-project?rev=279048&view=rev
Log:
[mips][msan] Fix all the XPASSes following r278793 and r278795

All msan tests are now passing for mipsel and mips64el except for
allocator_mapping.cc which is marked unsupported.


Modified:
    compiler-rt/trunk/test/msan/Linux/cmsghdr.cc
    compiler-rt/trunk/test/msan/Linux/eventfd.cc
    compiler-rt/trunk/test/msan/Linux/fopencookie.cc
    compiler-rt/trunk/test/msan/Linux/forkpty.cc
    compiler-rt/trunk/test/msan/Linux/getresid.cc
    compiler-rt/trunk/test/msan/Linux/glob.cc
    compiler-rt/trunk/test/msan/Linux/glob_altdirfunc.cc
    compiler-rt/trunk/test/msan/Linux/glob_nomatch.cc
    compiler-rt/trunk/test/msan/Linux/ioctl_sound.cc
    compiler-rt/trunk/test/msan/Linux/mallinfo.cc
    compiler-rt/trunk/test/msan/Linux/mincore.cc
    compiler-rt/trunk/test/msan/Linux/obstack.cc
    compiler-rt/trunk/test/msan/Linux/process_vm_readv.cc
    compiler-rt/trunk/test/msan/Linux/sendmsg.cc
    compiler-rt/trunk/test/msan/Linux/sunrpc.cc
    compiler-rt/trunk/test/msan/Linux/sunrpc_bytes.cc
    compiler-rt/trunk/test/msan/Linux/sunrpc_string.cc
    compiler-rt/trunk/test/msan/Linux/syscalls.cc
    compiler-rt/trunk/test/msan/Linux/syscalls_sigaction.cc
    compiler-rt/trunk/test/msan/Linux/tcgetattr.cc
    compiler-rt/trunk/test/msan/Linux/xattr.cc
    compiler-rt/trunk/test/msan/allocator_returns_null.cc
    compiler-rt/trunk/test/msan/backtrace.cc
    compiler-rt/trunk/test/msan/c-strdup.c
    compiler-rt/trunk/test/msan/chained_origin.cc
    compiler-rt/trunk/test/msan/chained_origin_empty_stack.cc
    compiler-rt/trunk/test/msan/chained_origin_limits.cc
    compiler-rt/trunk/test/msan/chained_origin_memcpy.cc
    compiler-rt/trunk/test/msan/chained_origin_with_signals.cc
    compiler-rt/trunk/test/msan/check_mem_is_initialized.cc
    compiler-rt/trunk/test/msan/coverage-levels.cc
    compiler-rt/trunk/test/msan/ctermid.cc
    compiler-rt/trunk/test/msan/cxa_atexit.cc
    compiler-rt/trunk/test/msan/death-callback.cc
    compiler-rt/trunk/test/msan/dlerror.cc

Modified: compiler-rt/trunk/test/msan/Linux/cmsghdr.cc
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/test/msan/Linux/cmsghdr.cc?rev=279048&r1=279047&r2=279048&view=diff
==============================================================================
--- compiler-rt/trunk/test/msan/Linux/cmsghdr.cc (original)
+++ compiler-rt/trunk/test/msan/Linux/cmsghdr.cc Thu Aug 18 05:50:46 2016
@@ -10,8 +10,6 @@
 
 // UNSUPPORTED: android
 
-// XFAIL: target-is-mips64el
-
 #include <assert.h>
 #include <stdio.h>
 #include <unistd.h>

Modified: compiler-rt/trunk/test/msan/Linux/eventfd.cc
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/test/msan/Linux/eventfd.cc?rev=279048&r1=279047&r2=279048&view=diff
==============================================================================
--- compiler-rt/trunk/test/msan/Linux/eventfd.cc (original)
+++ compiler-rt/trunk/test/msan/Linux/eventfd.cc Thu Aug 18 05:50:46 2016
@@ -1,7 +1,5 @@
 // RUN: %clangxx_msan -O0 %s -o %t && %run %t 2>&1
 
-// XFAIL: target-is-mips64el
-
 #include <assert.h>
 #include <sys/eventfd.h>
 

Modified: compiler-rt/trunk/test/msan/Linux/fopencookie.cc
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/test/msan/Linux/fopencookie.cc?rev=279048&r1=279047&r2=279048&view=diff
==============================================================================
--- compiler-rt/trunk/test/msan/Linux/fopencookie.cc (original)
+++ compiler-rt/trunk/test/msan/Linux/fopencookie.cc Thu Aug 18 05:50:46 2016
@@ -2,8 +2,6 @@
 // RUN: %clangxx_msan -std=c++11 -O0 %s -o %t && %run %t
 // RUN: %clangxx_msan -std=c++11 -fsanitize-memory-track-origins -O0 %s -o %t && %run %t
 
-// XFAIL: target-is-mips64el
-
 #include <assert.h>
 #include <pthread.h>
 #include <stdint.h>

Modified: compiler-rt/trunk/test/msan/Linux/forkpty.cc
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/test/msan/Linux/forkpty.cc?rev=279048&r1=279047&r2=279048&view=diff
==============================================================================
--- compiler-rt/trunk/test/msan/Linux/forkpty.cc (original)
+++ compiler-rt/trunk/test/msan/Linux/forkpty.cc Thu Aug 18 05:50:46 2016
@@ -1,7 +1,5 @@
 // RUN: %clangxx_msan -O0 -g %s -lutil -o %t && %run %t
 
-// XFAIL: target-is-mips64el
-
 #include <assert.h>
 #include <pty.h>
 

Modified: compiler-rt/trunk/test/msan/Linux/getresid.cc
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/test/msan/Linux/getresid.cc?rev=279048&r1=279047&r2=279048&view=diff
==============================================================================
--- compiler-rt/trunk/test/msan/Linux/getresid.cc (original)
+++ compiler-rt/trunk/test/msan/Linux/getresid.cc Thu Aug 18 05:50:46 2016
@@ -2,8 +2,6 @@
 // RUN: %clangxx_msan -O0 -D_FILE_OFFSET_BITS=64 %s -o %t && %run %t %p 2>&1
 // RUN: %clangxx_msan -O3 %s -o %t && %run %t %p 2>&1
 
-// XFAIL: target-is-mips64el
-
 #include <assert.h>
 #include <unistd.h>
 

Modified: compiler-rt/trunk/test/msan/Linux/glob.cc
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/test/msan/Linux/glob.cc?rev=279048&r1=279047&r2=279048&view=diff
==============================================================================
--- compiler-rt/trunk/test/msan/Linux/glob.cc (original)
+++ compiler-rt/trunk/test/msan/Linux/glob.cc Thu Aug 18 05:50:46 2016
@@ -2,8 +2,6 @@
 // RUN: %clangxx_msan -O0 -D_FILE_OFFSET_BITS=64 %s -o %t && %run %t %p 2>&1 | FileCheck %s
 // RUN: %clangxx_msan -O3 %s -o %t && %run %t %p 2>&1 | FileCheck %s
 
-// XFAIL: target-is-mips64el
-
 #include <assert.h>
 #include <glob.h>
 #include <stdio.h>

Modified: compiler-rt/trunk/test/msan/Linux/glob_altdirfunc.cc
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/test/msan/Linux/glob_altdirfunc.cc?rev=279048&r1=279047&r2=279048&view=diff
==============================================================================
--- compiler-rt/trunk/test/msan/Linux/glob_altdirfunc.cc (original)
+++ compiler-rt/trunk/test/msan/Linux/glob_altdirfunc.cc Thu Aug 18 05:50:46 2016
@@ -2,8 +2,6 @@
 // RUN: %clangxx_msan -O0 -D_FILE_OFFSET_BITS=64 %s -o %t && %run %t %p 2>&1 | FileCheck %s
 // RUN: %clangxx_msan -O3 %s -o %t && %run %t %p 2>&1 | FileCheck %s
 
-// XFAIL: target-is-mips64el
-
 #include <assert.h>
 #include <glob.h>
 #include <stdio.h>

Modified: compiler-rt/trunk/test/msan/Linux/glob_nomatch.cc
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/test/msan/Linux/glob_nomatch.cc?rev=279048&r1=279047&r2=279048&view=diff
==============================================================================
--- compiler-rt/trunk/test/msan/Linux/glob_nomatch.cc (original)
+++ compiler-rt/trunk/test/msan/Linux/glob_nomatch.cc Thu Aug 18 05:50:46 2016
@@ -1,8 +1,6 @@
 // RUN: %clangxx_msan -O0 %s -o %t && %run %t %p
 // RUN: %clangxx_msan -O3 %s -o %t && %run %t %p
 
-// XFAIL: target-is-mips64el
-
 #include <assert.h>
 #include <glob.h>
 #include <stdio.h>

Modified: compiler-rt/trunk/test/msan/Linux/ioctl_sound.cc
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/test/msan/Linux/ioctl_sound.cc?rev=279048&r1=279047&r2=279048&view=diff
==============================================================================
--- compiler-rt/trunk/test/msan/Linux/ioctl_sound.cc (original)
+++ compiler-rt/trunk/test/msan/Linux/ioctl_sound.cc Thu Aug 18 05:50:46 2016
@@ -1,8 +1,6 @@
 // RUN: %clangxx_msan -O0 -g %s -o %t && %run %t
 // RUN: %clangxx_msan -O3 -g %s -o %t && %run %t
 
-// XFAIL: target-is-mips64el
-
 #include <assert.h>
 #include <fcntl.h>
 #include <sound/asound.h>

Modified: compiler-rt/trunk/test/msan/Linux/mallinfo.cc
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/test/msan/Linux/mallinfo.cc?rev=279048&r1=279047&r2=279048&view=diff
==============================================================================
--- compiler-rt/trunk/test/msan/Linux/mallinfo.cc (original)
+++ compiler-rt/trunk/test/msan/Linux/mallinfo.cc Thu Aug 18 05:50:46 2016
@@ -1,8 +1,6 @@
 // RUN: %clangxx_msan -O0 -g %s -o %t && %run %t
 // REQUIRES: stable-runtime
 
-// XFAIL: target-is-mips64el
-
 #include <assert.h>
 #include <malloc.h>
 

Modified: compiler-rt/trunk/test/msan/Linux/mincore.cc
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/test/msan/Linux/mincore.cc?rev=279048&r1=279047&r2=279048&view=diff
==============================================================================
--- compiler-rt/trunk/test/msan/Linux/mincore.cc (original)
+++ compiler-rt/trunk/test/msan/Linux/mincore.cc Thu Aug 18 05:50:46 2016
@@ -1,7 +1,5 @@
 // RUN: %clangxx_msan -std=c++11 -O0 %s -o %t && %run %t
 
-// XFAIL: target-is-mips64el
-
 #include <assert.h>
 #include <unistd.h>
 #include <sys/mman.h>

Modified: compiler-rt/trunk/test/msan/Linux/obstack.cc
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/test/msan/Linux/obstack.cc?rev=279048&r1=279047&r2=279048&view=diff
==============================================================================
--- compiler-rt/trunk/test/msan/Linux/obstack.cc (original)
+++ compiler-rt/trunk/test/msan/Linux/obstack.cc Thu Aug 18 05:50:46 2016
@@ -1,8 +1,6 @@
 // RUN: %clangxx_msan -O0 -g %s -o %t && %run %t
 // RUN: %clangxx_msan -O0 -g -DPOSITIVE %s -o %t && not %run %t |& FileCheck %s
 
-// XFAIL: target-is-mips64el
-
 #include <obstack.h>
 #include <sanitizer/msan_interface.h>
 #include <stdlib.h>

Modified: compiler-rt/trunk/test/msan/Linux/process_vm_readv.cc
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/test/msan/Linux/process_vm_readv.cc?rev=279048&r1=279047&r2=279048&view=diff
==============================================================================
--- compiler-rt/trunk/test/msan/Linux/process_vm_readv.cc (original)
+++ compiler-rt/trunk/test/msan/Linux/process_vm_readv.cc Thu Aug 18 05:50:46 2016
@@ -1,8 +1,6 @@
 // RUN: %clangxx_msan -std=c++11 -O0 %s -o %t && %run %t
 // RUN: %clangxx_msan -std=c++11 -O0 %s -o %t -DPOSITIVE && not %run %t |& FileCheck %s
 
-// XFAIL: target-is-mips64el
-
 #include <assert.h>
 #include <dlfcn.h>
 #include <sanitizer/msan_interface.h>

Modified: compiler-rt/trunk/test/msan/Linux/sendmsg.cc
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/test/msan/Linux/sendmsg.cc?rev=279048&r1=279047&r2=279048&view=diff
==============================================================================
--- compiler-rt/trunk/test/msan/Linux/sendmsg.cc (original)
+++ compiler-rt/trunk/test/msan/Linux/sendmsg.cc Thu Aug 18 05:50:46 2016
@@ -15,8 +15,6 @@
 
 // UNSUPPORTED: android
 
-// XFAIL: target-is-mips64el
-
 #include <assert.h>
 #include <stdio.h>
 #include <unistd.h>

Modified: compiler-rt/trunk/test/msan/Linux/sunrpc.cc
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/test/msan/Linux/sunrpc.cc?rev=279048&r1=279047&r2=279048&view=diff
==============================================================================
--- compiler-rt/trunk/test/msan/Linux/sunrpc.cc (original)
+++ compiler-rt/trunk/test/msan/Linux/sunrpc.cc Thu Aug 18 05:50:46 2016
@@ -11,8 +11,6 @@
 // RUN: %clangxx_msan -g -O0 -DTYPE=u_quad_t -DFN=xdr_u_longlong_t -DUNINIT=1 %s -o %t && \
 // RUN:     not %run %t 2>&1 | FileCheck %s
 
-// XFAIL: target-is-mips64el
-
 #include <assert.h>
 #include <rpc/xdr.h>
 

Modified: compiler-rt/trunk/test/msan/Linux/sunrpc_bytes.cc
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/test/msan/Linux/sunrpc_bytes.cc?rev=279048&r1=279047&r2=279048&view=diff
==============================================================================
--- compiler-rt/trunk/test/msan/Linux/sunrpc_bytes.cc (original)
+++ compiler-rt/trunk/test/msan/Linux/sunrpc_bytes.cc Thu Aug 18 05:50:46 2016
@@ -3,8 +3,6 @@
 // RUN: %clangxx_msan -g -O0 -DUNINIT=1 %s -o %t && \
 // RUN:     not %run %t 2>&1 | FileCheck %s
 
-// XFAIL: target-is-mips64el
-
 #include <assert.h>
 #include <string.h>
 #include <rpc/xdr.h>

Modified: compiler-rt/trunk/test/msan/Linux/sunrpc_string.cc
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/test/msan/Linux/sunrpc_string.cc?rev=279048&r1=279047&r2=279048&view=diff
==============================================================================
--- compiler-rt/trunk/test/msan/Linux/sunrpc_string.cc (original)
+++ compiler-rt/trunk/test/msan/Linux/sunrpc_string.cc Thu Aug 18 05:50:46 2016
@@ -3,8 +3,6 @@
 // RUN: %clangxx_msan -g -O0 -DUNINIT=1 %s -o %t && \
 // RUN:     not %run %t 2>&1 | FileCheck %s
 
-// XFAIL: target-is-mips64el
-
 #include <assert.h>
 #include <string.h>
 #include <rpc/xdr.h>

Modified: compiler-rt/trunk/test/msan/Linux/syscalls.cc
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/test/msan/Linux/syscalls.cc?rev=279048&r1=279047&r2=279048&view=diff
==============================================================================
--- compiler-rt/trunk/test/msan/Linux/syscalls.cc (original)
+++ compiler-rt/trunk/test/msan/Linux/syscalls.cc Thu Aug 18 05:50:46 2016
@@ -1,8 +1,6 @@
 // RUN: %clangxx_msan -O0 %s -o %t && %run %t 2>&1
 // RUN: %clangxx_msan -O3 %s -o %t && %run %t 2>&1
 
-// XFAIL: target-is-mips64el
-
 #include <assert.h>
 #include <errno.h>
 #include <glob.h>

Modified: compiler-rt/trunk/test/msan/Linux/syscalls_sigaction.cc
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/test/msan/Linux/syscalls_sigaction.cc?rev=279048&r1=279047&r2=279048&view=diff
==============================================================================
--- compiler-rt/trunk/test/msan/Linux/syscalls_sigaction.cc (original)
+++ compiler-rt/trunk/test/msan/Linux/syscalls_sigaction.cc Thu Aug 18 05:50:46 2016
@@ -3,8 +3,6 @@
 // RUN: %clangxx_msan -DPRE3 -O0 %s -o %t && not %run %t 2>&1
 // RUN: %clangxx_msan -O0 %s -o %t && %run %t 2>&1
 
-// XFAIL: target-is-mips64el                                                      
-
 #include <assert.h>
 #include <signal.h>
 #include <string.h>

Modified: compiler-rt/trunk/test/msan/Linux/tcgetattr.cc
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/test/msan/Linux/tcgetattr.cc?rev=279048&r1=279047&r2=279048&view=diff
==============================================================================
--- compiler-rt/trunk/test/msan/Linux/tcgetattr.cc (original)
+++ compiler-rt/trunk/test/msan/Linux/tcgetattr.cc Thu Aug 18 05:50:46 2016
@@ -1,7 +1,5 @@
 // RUN: %clangxx_msan -O0 %s -o %t && %run %t %p
 
-// XFAIL: target-is-mips64el                                                      
-
 #include <assert.h>
 #include <glob.h>
 #include <stdio.h>

Modified: compiler-rt/trunk/test/msan/Linux/xattr.cc
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/test/msan/Linux/xattr.cc?rev=279048&r1=279047&r2=279048&view=diff
==============================================================================
--- compiler-rt/trunk/test/msan/Linux/xattr.cc (original)
+++ compiler-rt/trunk/test/msan/Linux/xattr.cc Thu Aug 18 05:50:46 2016
@@ -2,8 +2,6 @@
 // RUN: %clangxx_msan -O0 -D_FILE_OFFSET_BITS=64 %s -o %t && %run %t %p 2>&1
 // RUN: %clangxx_msan -O3 %s -o %t && %run %t %p 2>&1
 
-// XFAIL: target-is-mips64el                                                      
-
 #include <argz.h>
 #include <assert.h>
 #include <sys/types.h>

Modified: compiler-rt/trunk/test/msan/allocator_returns_null.cc
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/test/msan/allocator_returns_null.cc?rev=279048&r1=279047&r2=279048&view=diff
==============================================================================
--- compiler-rt/trunk/test/msan/allocator_returns_null.cc (original)
+++ compiler-rt/trunk/test/msan/allocator_returns_null.cc Thu Aug 18 05:50:46 2016
@@ -15,8 +15,6 @@
 // RUN: MSAN_OPTIONS=allocator_may_return_null=0 not %run %t realloc-after-malloc 2>&1 | FileCheck %s --check-prefix=CHECK-mrCRASH
 // RUN: MSAN_OPTIONS=allocator_may_return_null=1     %run %t realloc-after-malloc 2>&1 | FileCheck %s --check-prefix=CHECK-mrNULL
 
-// XFAIL: target-is-mips64el
-
 #include <limits.h>
 #include <stdlib.h>
 #include <string.h>

Modified: compiler-rt/trunk/test/msan/backtrace.cc
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/test/msan/backtrace.cc?rev=279048&r1=279047&r2=279048&view=diff
==============================================================================
--- compiler-rt/trunk/test/msan/backtrace.cc (original)
+++ compiler-rt/trunk/test/msan/backtrace.cc Thu Aug 18 05:50:46 2016
@@ -1,7 +1,5 @@
 // RUN: %clangxx_msan -O0 %s -o %t && %run %t
 
-// XFAIL: target-is-mips64el
-
 #include <assert.h>
 #include <execinfo.h>
 #include <stdio.h>

Modified: compiler-rt/trunk/test/msan/c-strdup.c
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/test/msan/c-strdup.c?rev=279048&r1=279047&r2=279048&view=diff
==============================================================================
--- compiler-rt/trunk/test/msan/c-strdup.c (original)
+++ compiler-rt/trunk/test/msan/c-strdup.c Thu Aug 18 05:50:46 2016
@@ -3,8 +3,6 @@
 // RUN: %clang_msan -O2 %s -o %t && %run %t >%t.out 2>&1
 // RUN: %clang_msan -O3 %s -o %t && %run %t >%t.out 2>&1
 
-// XFAIL: target-is-mips64el
-
 // Test that strdup in C programs is intercepted.
 // GLibC headers translate strdup to __strdup at -O1 and higher.
 

Modified: compiler-rt/trunk/test/msan/chained_origin.cc
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/test/msan/chained_origin.cc?rev=279048&r1=279047&r2=279048&view=diff
==============================================================================
--- compiler-rt/trunk/test/msan/chained_origin.cc (original)
+++ compiler-rt/trunk/test/msan/chained_origin.cc Thu Aug 18 05:50:46 2016
@@ -15,8 +15,6 @@
 // RUN:     not %run %t >%t.out 2>&1
 // RUN: FileCheck %s --check-prefix=CHECK --check-prefix=CHECK-HEAP < %t.out
 
-// XFAIL: target-is-mips64el
-
 #include <stdio.h>
 
 volatile int x, y;

Modified: compiler-rt/trunk/test/msan/chained_origin_empty_stack.cc
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/test/msan/chained_origin_empty_stack.cc?rev=279048&r1=279047&r2=279048&view=diff
==============================================================================
--- compiler-rt/trunk/test/msan/chained_origin_empty_stack.cc (original)
+++ compiler-rt/trunk/test/msan/chained_origin_empty_stack.cc Thu Aug 18 05:50:46 2016
@@ -1,8 +1,6 @@
 // RUN: %clangxx_msan -fsanitize-memory-track-origins=2 -O3 %s -o %t && \
 // RUN:     MSAN_OPTIONS=store_context_size=1 not %run %t 2>&1 | FileCheck %s
 
-// XFAIL: target-is-mips64el
-
 // Test that stack trace for the intermediate store is not empty.
 
 // CHECK: MemorySanitizer: use-of-uninitialized-value

Modified: compiler-rt/trunk/test/msan/chained_origin_limits.cc
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/test/msan/chained_origin_limits.cc?rev=279048&r1=279047&r2=279048&view=diff
==============================================================================
--- compiler-rt/trunk/test/msan/chained_origin_limits.cc (original)
+++ compiler-rt/trunk/test/msan/chained_origin_limits.cc Thu Aug 18 05:50:46 2016
@@ -62,8 +62,6 @@
 // RUN: MSAN_OPTIONS=origin_history_size=7,origin_history_per_stack_limit=0 not %run %t >%t.out 2>&1
 // RUN: FileCheck %s --check-prefix=CHECK7 < %t.out
 
-// XFAIL: target-is-mips64el
-
 #include <stdio.h>
 #include <stdlib.h>
 #include <string.h>

Modified: compiler-rt/trunk/test/msan/chained_origin_memcpy.cc
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/test/msan/chained_origin_memcpy.cc?rev=279048&r1=279047&r2=279048&view=diff
==============================================================================
--- compiler-rt/trunk/test/msan/chained_origin_memcpy.cc (original)
+++ compiler-rt/trunk/test/msan/chained_origin_memcpy.cc Thu Aug 18 05:50:46 2016
@@ -15,8 +15,6 @@
 // RUN:     not %run %t >%t.out 2>&1
 // RUN: FileCheck %s --check-prefix=CHECK --check-prefix=CHECK-Z2 < %t.out
 
-// XFAIL: target-is-mips64el
-
 #include <stdio.h>
 #include <string.h>
 

Modified: compiler-rt/trunk/test/msan/chained_origin_with_signals.cc
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/test/msan/chained_origin_with_signals.cc?rev=279048&r1=279047&r2=279048&view=diff
==============================================================================
--- compiler-rt/trunk/test/msan/chained_origin_with_signals.cc (original)
+++ compiler-rt/trunk/test/msan/chained_origin_with_signals.cc Thu Aug 18 05:50:46 2016
@@ -10,8 +10,6 @@
 // RUN:     not %run %t >%t.out 2>&1
 // RUN: FileCheck %s < %t.out
 
-// XFAIL: target-is-mips64el
-
 #include <signal.h>
 #include <stdio.h>
 #include <sys/types.h>

Modified: compiler-rt/trunk/test/msan/check_mem_is_initialized.cc
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/test/msan/check_mem_is_initialized.cc?rev=279048&r1=279047&r2=279048&view=diff
==============================================================================
--- compiler-rt/trunk/test/msan/check_mem_is_initialized.cc (original)
+++ compiler-rt/trunk/test/msan/check_mem_is_initialized.cc Thu Aug 18 05:50:46 2016
@@ -16,8 +16,6 @@
 // RUN: %clangxx_msan -fsanitize-memory-track-origins -O3 %s -o %t && not %run %t >%t.out 2>&1
 // RUN: FileCheck %s < %t.out && FileCheck %s --check-prefix=CHECK-ORIGINS < %t.out
 
-// XFAIL: target-is-mips64el
-
 #include <sanitizer/msan_interface.h>
 #include <stdlib.h>
 

Modified: compiler-rt/trunk/test/msan/coverage-levels.cc
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/test/msan/coverage-levels.cc?rev=279048&r1=279047&r2=279048&view=diff
==============================================================================
--- compiler-rt/trunk/test/msan/coverage-levels.cc (original)
+++ compiler-rt/trunk/test/msan/coverage-levels.cc Thu Aug 18 05:50:46 2016
@@ -10,8 +10,6 @@
 // RUN: %clangxx_msan -O1 -fsanitize-coverage=edge  %s -o %t
 // RUN: MSAN_OPTIONS=coverage=1:verbosity=1:coverage_dir=%T/coverage-levels not %run %t 2>&1 | FileCheck %s --check-prefix=CHECK3 --check-prefix=CHECK_WARN
 
-// XFAIL: target-is-mips64el
-
 volatile int sink;
 int main(int argc, char **argv) {
   int var;

Modified: compiler-rt/trunk/test/msan/ctermid.cc
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/test/msan/ctermid.cc?rev=279048&r1=279047&r2=279048&view=diff
==============================================================================
--- compiler-rt/trunk/test/msan/ctermid.cc (original)
+++ compiler-rt/trunk/test/msan/ctermid.cc Thu Aug 18 05:50:46 2016
@@ -1,7 +1,5 @@
 // RUN: %clangxx_msan -std=c++11 -O0 %s -o %t && %run %t
 
-// XFAIL: target-is-mips64el
-
 #include <sanitizer/msan_interface.h>
 #include <stdio.h>
 #include <string.h>

Modified: compiler-rt/trunk/test/msan/cxa_atexit.cc
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/test/msan/cxa_atexit.cc?rev=279048&r1=279047&r2=279048&view=diff
==============================================================================
--- compiler-rt/trunk/test/msan/cxa_atexit.cc (original)
+++ compiler-rt/trunk/test/msan/cxa_atexit.cc Thu Aug 18 05:50:46 2016
@@ -1,7 +1,5 @@
 // RUN: %clangxx_msan -O0 %s -o %t && %run %t %p
 
-// XFAIL: target-is-mips64el
-
 // PR17377: C++ module destructors get stale argument shadow.
 
 #include <stdio.h>

Modified: compiler-rt/trunk/test/msan/death-callback.cc
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/test/msan/death-callback.cc?rev=279048&r1=279047&r2=279048&view=diff
==============================================================================
--- compiler-rt/trunk/test/msan/death-callback.cc (original)
+++ compiler-rt/trunk/test/msan/death-callback.cc Thu Aug 18 05:50:46 2016
@@ -7,8 +7,6 @@
 // RUN: %clangxx_msan -DMSANCB_SET %s -o %t && %run %t 2>&1 | \
 // RUN:     FileCheck %s --check-prefix=CHECK --check-prefix=CHECK-NOCB
 
-// XFAIL: target-is-mips64el
-
 #include <sanitizer/msan_interface.h>
 #include <stdio.h>
 #include <stdlib.h>

Modified: compiler-rt/trunk/test/msan/dlerror.cc
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/test/msan/dlerror.cc?rev=279048&r1=279047&r2=279048&view=diff
==============================================================================
--- compiler-rt/trunk/test/msan/dlerror.cc (original)
+++ compiler-rt/trunk/test/msan/dlerror.cc Thu Aug 18 05:50:46 2016
@@ -1,7 +1,5 @@
 // RUN: %clangxx_msan -O0 %s -o %t && %run %t
 
-// XFAIL: target-is-mips64el
-
 #include <assert.h>
 #include <dlfcn.h>
 #include <stdio.h>




More information about the llvm-commits mailing list