[compiler-rt] a6b9634 - [test][sanitizer] Disable create_thread_loop on Android

via llvm-commits llvm-commits at lists.llvm.org
Sun May 14 01:22:53 PDT 2023


Author: Vitaly Buka
Date: 2023-05-14T01:22:49-07:00
New Revision: a6b9634d0a1e4fd81de891b02679eb39ea21c5e5

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

LOG: [test][sanitizer] Disable create_thread_loop on Android

Added: 
    

Modified: 
    compiler-rt/test/sanitizer_common/TestCases/Posix/create_thread_loop.cpp

Removed: 
    


################################################################################
diff  --git a/compiler-rt/test/sanitizer_common/TestCases/Posix/create_thread_loop.cpp b/compiler-rt/test/sanitizer_common/TestCases/Posix/create_thread_loop.cpp
index 46bc1b52af447..6b7ee913cc992 100644
--- a/compiler-rt/test/sanitizer_common/TestCases/Posix/create_thread_loop.cpp
+++ b/compiler-rt/test/sanitizer_common/TestCases/Posix/create_thread_loop.cpp
@@ -2,6 +2,9 @@
 
 // RUN: %clangxx -O3 -pthread %s -o %t && %run %t 1000
 
+// Inconsistently fails on Android.
+// UNSUPPORTED: android
+
 #include <pthread.h>
 #include <stdlib.h>
 


        


More information about the llvm-commits mailing list