[compiler-rt] r344041 - Mark 4 MSan tests as XFAIL for NetBSD

Kamil Rytarowski via llvm-commits llvm-commits at lists.llvm.org
Tue Oct 9 05:55:30 PDT 2018


Author: kamil
Date: Tue Oct  9 05:55:29 2018
New Revision: 344041

URL: http://llvm.org/viewvc/llvm-project?rev=344041&view=rev
Log:
Mark 4 MSan tests as XFAIL for NetBSD

Failing ones:
 - chained_origin_with_signals
 - dtls_test
 - ioctl_custom
 - signal_stress_test

Modified:
    compiler-rt/trunk/test/msan/chained_origin_with_signals.cc
    compiler-rt/trunk/test/msan/dtls_test.c
    compiler-rt/trunk/test/msan/ioctl_custom.cc
    compiler-rt/trunk/test/msan/signal_stress_test.cc

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=344041&r1=344040&r2=344041&view=diff
==============================================================================
--- compiler-rt/trunk/test/msan/chained_origin_with_signals.cc (original)
+++ compiler-rt/trunk/test/msan/chained_origin_with_signals.cc Tue Oct  9 05:55:29 2018
@@ -10,6 +10,9 @@
 // RUN:     not %run %t >%t.out 2>&1
 // RUN: FileCheck %s < %t.out
 
+// Reported deadly signal due to stack-overflow
+// XFAIL: netbsd
+
 #include <signal.h>
 #include <stdio.h>
 #include <sys/types.h>

Modified: compiler-rt/trunk/test/msan/dtls_test.c
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/test/msan/dtls_test.c?rev=344041&r1=344040&r2=344041&view=diff
==============================================================================
--- compiler-rt/trunk/test/msan/dtls_test.c (original)
+++ compiler-rt/trunk/test/msan/dtls_test.c Tue Oct  9 05:55:29 2018
@@ -8,6 +8,9 @@
 
    XFAIL: FreeBSD
    UNSUPPORTED: powerpc
+
+   // Reports use-of-uninitialized-value, not analyzed
+   XFAIL: netbsd
 */
 
 #ifndef BUILD_SO

Modified: compiler-rt/trunk/test/msan/ioctl_custom.cc
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/test/msan/ioctl_custom.cc?rev=344041&r1=344040&r2=344041&view=diff
==============================================================================
--- compiler-rt/trunk/test/msan/ioctl_custom.cc (original)
+++ compiler-rt/trunk/test/msan/ioctl_custom.cc Tue Oct  9 05:55:29 2018
@@ -4,6 +4,9 @@
 // RUN: %clangxx_msan -DPOSITIVE -O0 -g %s -o %t && not %run %t 2>&1 | FileCheck %s
 // RUN: %clangxx_msan -DPOSITIVE -O3 -g %s -o %t && not %run %t 2>&1 | FileCheck %s
 
+// Reports different report (not analyzed)
+// XFAIL: netbsd
+
 #include <assert.h>
 #include <stdlib.h>
 #include <net/if.h>

Modified: compiler-rt/trunk/test/msan/signal_stress_test.cc
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/test/msan/signal_stress_test.cc?rev=344041&r1=344040&r2=344041&view=diff
==============================================================================
--- compiler-rt/trunk/test/msan/signal_stress_test.cc (original)
+++ compiler-rt/trunk/test/msan/signal_stress_test.cc Tue Oct  9 05:55:29 2018
@@ -2,6 +2,9 @@
 //
 // Test that va_arg shadow from a signal handler does not leak outside.
 
+// Reported deadly signal due to stack-overflow
+// XFAIL: netbsd
+
 #include <signal.h>
 #include <stdarg.h>
 #include <sanitizer/msan_interface.h>




More information about the llvm-commits mailing list