[compiler-rt] 9a82412 - [test][fuzzer] XFAIL tvOS tests pending investigation. (rdar://99981102)

Roy Sundahl via llvm-commits llvm-commits at lists.llvm.org
Thu Sep 15 13:40:49 PDT 2022


Author: Roy Sundahl
Date: 2022-09-15T13:40:28-07:00
New Revision: 9a82412f82f3f45db309cc6afb8e684d4d4b3215

URL: https://github.com/llvm/llvm-project/commit/9a82412f82f3f45db309cc6afb8e684d4d4b3215
DIFF: https://github.com/llvm/llvm-project/commit/9a82412f82f3f45db309cc6afb8e684d4d4b3215.diff

LOG: [test][fuzzer] XFAIL tvOS tests pending investigation. (rdar://99981102)

These four tests are failing on tvOS devices (not simulators) so  XFAIL
them for now for CI and investigate further.

rdar://99981102

Differential Revision: https://reviews.llvm.org/D133963

Added: 
    

Modified: 
    compiler-rt/test/fuzzer/fuzzer-segv.test
    compiler-rt/test/fuzzer/minimize_two_crashes.test
    compiler-rt/test/fuzzer/null-deref.test
    compiler-rt/test/fuzzer/stack-overflow-with-asan.test

Removed: 
    


################################################################################
diff  --git a/compiler-rt/test/fuzzer/fuzzer-segv.test b/compiler-rt/test/fuzzer/fuzzer-segv.test
index 7ae9049e15a6a..524a92847556f 100644
--- a/compiler-rt/test/fuzzer/fuzzer-segv.test
+++ b/compiler-rt/test/fuzzer/fuzzer-segv.test
@@ -1,3 +1,6 @@
+# Test fail on device (rdar://99981102)
+XFAIL: tvos && !tvossim
+
 RUN: %cpp_compiler %S/NullDerefTest.cpp -o %t-NullDerefTest
 RUN: %env_asan_opts=handle_segv=0 not %run %t-NullDerefTest 2>&1 | FileCheck %s --check-prefix=LIBFUZZER_OWN_SEGV_HANDLER
 LIBFUZZER_OWN_SEGV_HANDLER: == ERROR: libFuzzer: deadly signal

diff  --git a/compiler-rt/test/fuzzer/minimize_two_crashes.test b/compiler-rt/test/fuzzer/minimize_two_crashes.test
index 952b9da703a5d..67c62d71515bd 100644
--- a/compiler-rt/test/fuzzer/minimize_two_crashes.test
+++ b/compiler-rt/test/fuzzer/minimize_two_crashes.test
@@ -1,3 +1,6 @@
+# Test fail on device (rdar://99981102)
+XFAIL: tvos && !tvossim
+
 # Test that the minimizer stops when it sees a 
diff erent bug.
 UNSUPPORTED: freebsd
 

diff  --git a/compiler-rt/test/fuzzer/null-deref.test b/compiler-rt/test/fuzzer/null-deref.test
index 31eb5990da33d..81e35f9e542b6 100644
--- a/compiler-rt/test/fuzzer/null-deref.test
+++ b/compiler-rt/test/fuzzer/null-deref.test
@@ -1,3 +1,6 @@
+# Test fail on device (rdar://99981102)
+XFAIL: tvos && !tvossim
+
 RUN: %cpp_compiler %S/NullDerefTest.cpp -o %t-NullDerefTest
 
 RUN: not %run %t-NullDerefTest                  2>&1 | FileCheck %s --check-prefix=NullDerefTest

diff  --git a/compiler-rt/test/fuzzer/stack-overflow-with-asan.test b/compiler-rt/test/fuzzer/stack-overflow-with-asan.test
index ca3c2f9cbd64b..7253b445f1290 100644
--- a/compiler-rt/test/fuzzer/stack-overflow-with-asan.test
+++ b/compiler-rt/test/fuzzer/stack-overflow-with-asan.test
@@ -1,3 +1,6 @@
+# Test fail on device (rdar://99981102)
+XFAIL: tvos && !tvossim
+
 CHECK: AddressSanitizer: stack-overflow
 RUN: %cpp_compiler %S/StackOverflowTest.cpp -o %t-StackOverflowTest
 RUN: not %run %t-StackOverflowTest 2>&1 | FileCheck %s


        


More information about the llvm-commits mailing list