diff options
author | Siva Chandra Reddy <sivachandra@google.com> | 2021-06-15 20:57:51 +0000 |
---|---|---|
committer | Siva Chandra Reddy <sivachandra@google.com> | 2021-06-15 20:58:36 +0000 |
commit | 3af3e7dc576fa9ff972d6366923a52d2769453a0 (patch) | |
tree | 935a72340a27f5a3769e256d4dfe02cd8e5bc9ac | |
parent | a04f01bab2da4650cc90a351fd734e626e6797af (diff) | |
download | llvm-3af3e7dc576fa9ff972d6366923a52d2769453a0.zip llvm-3af3e7dc576fa9ff972d6366923a52d2769453a0.tar.gz llvm-3af3e7dc576fa9ff972d6366923a52d2769453a0.tar.bz2 |
[libc][NFC] Disable thrd_test as it is exhibiting flaky behavior on the bots.
-rw-r--r-- | libc/test/src/threads/CMakeLists.txt | 25 |
1 files changed, 13 insertions, 12 deletions
diff --git a/libc/test/src/threads/CMakeLists.txt b/libc/test/src/threads/CMakeLists.txt index 6511efe..246401d 100644 --- a/libc/test/src/threads/CMakeLists.txt +++ b/libc/test/src/threads/CMakeLists.txt @@ -16,18 +16,19 @@ add_libc_unittest( libc.src.threads.thrd_join ) -add_libc_unittest( - thrd_test - SUITE - libc_threads_unittests - SRCS - thrd_test.cpp - DEPENDS - libc.include.threads - libc.src.errno.__errno_location - libc.src.threads.thrd_create - libc.src.threads.thrd_join -) +# Disable thrd_test for now as it is flaky on the bots. +# add_libc_unittest( +# thrd_test +# SUITE +# libc_threads_unittests +# SRCS +# thrd_test.cpp +# DEPENDS +# libc.include.threads +# libc.src.errno.__errno_location +# libc.src.threads.thrd_create +# libc.src.threads.thrd_join +# ) add_libc_unittest( mtx_test |