aboutsummaryrefslogtreecommitdiff
path: root/libc/test
diff options
context:
space:
mode:
authorSiva Chandra Reddy <sivachandra@google.com>2020-08-07 23:45:18 -0700
committerSiva Chandra Reddy <sivachandra@google.com>2020-08-07 23:45:18 -0700
commitf6d74b29d6dc437db983aabee0b2b6d6d3c52f56 (patch)
treefcdfd051fb59a1c8f25cd9346e37fc5777406e00 /libc/test
parentdb936e0e915377a58032dccc13bedbfccf0a1ca8 (diff)
downloadllvm-project-f6d74b29d6dc437db983aabee0b2b6d6d3c52f56.tar.gz
[libc][NFC] Disable a loader test as ld.gold fails to link.
Will be reenabled after investigating and fixing the problem.
Diffstat (limited to 'libc/test')
-rw-r--r--libc/test/loader/linux/CMakeLists.txt28
1 files changed, 15 insertions, 13 deletions
diff --git a/libc/test/loader/linux/CMakeLists.txt b/libc/test/loader/linux/CMakeLists.txt
index b7899fa4c5c1..15d67a128194 100644
--- a/libc/test/loader/linux/CMakeLists.txt
+++ b/libc/test/loader/linux/CMakeLists.txt
@@ -36,16 +36,18 @@ add_loader_test(
libc.loader.linux.crt1
)
-add_loader_test(
- loader_tls_test
- SRC
- tls_test.cpp
- DEPENDS
- libc.config.linux.app_h
- libc.include.errno
- libc.include.sys_mman
- libc.loader.linux.crt1
- libc.src.assert.__assert_fail
- libc.src.errno.__errno_location
- libc.src.sys.mman.mmap
-)
+# TODO: Disableing this test temporarily to investigate why gold fails to link
+# and produce an executable for this test. Test works all fine with ld.bfd.
+#add_loader_test(
+# loader_tls_test
+# SRC
+# tls_test.cpp
+# DEPENDS
+# libc.config.linux.app_h
+# libc.include.errno
+# libc.include.sys_mman
+# libc.loader.linux.crt1
+# libc.src.assert.__assert_fail
+# libc.src.errno.__errno_location
+# libc.src.sys.mman.mmap
+#)