summaryrefslogtreecommitdiff
path: root/compiler-rt
diff options
context:
space:
mode:
authorVitaly Buka <vitalybuka@google.com>2023-05-14 01:22:49 -0700
committerGitHub <noreply@github.com>2023-05-14 01:22:49 -0700
commita6b9634d0a1e4fd81de891b02679eb39ea21c5e5 (patch)
tree538e083a05b7740f2eaa71bd1f98b927c52bdf3f /compiler-rt
parentc67412516edd07aeb7bed55dbf84e9ae261913b4 (diff)
downloadllvm-a6b9634d0a1e4fd81de891b02679eb39ea21c5e5.tar.gz
[test][sanitizer] Disable create_thread_loop on Android
Diffstat (limited to 'compiler-rt')
-rw-r--r--compiler-rt/test/sanitizer_common/TestCases/Posix/create_thread_loop.cpp3
1 files changed, 3 insertions, 0 deletions
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 46bc1b52af44..6b7ee913cc99 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>