summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSiva Chandra Reddy <sivachandra@google.com>2022-01-10 05:51:30 +0000
committerSiva Chandra Reddy <sivachandra@google.com>2022-01-10 06:18:51 +0000
commitcd4deef28e4361af19cd5a208ef51a5f0b26ee61 (patch)
treeb89debbe518e282f1ca9c55e7be16c6acbf510d9
parented3a4a4948dedd264732105e910405138c9c0f3b (diff)
downloadllvm-cd4deef28e4361af19cd5a208ef51a5f0b26ee61.tar.gz
[libc] Re-enable thrd_test.
Other threads related tests have been using the API that is tested here without any problems. The main reason for disabling the test has also been fixed many months ago.
-rw-r--r--libc/test/src/threads/CMakeLists.txt25
1 files changed, 12 insertions, 13 deletions
diff --git a/libc/test/src/threads/CMakeLists.txt b/libc/test/src/threads/CMakeLists.txt
index e37531743dd2..356a8b06e408 100644
--- a/libc/test/src/threads/CMakeLists.txt
+++ b/libc/test/src/threads/CMakeLists.txt
@@ -17,19 +17,18 @@ add_libc_unittest(
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(
+ 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