[libc][NFC] Disable a loader test as ld.gold fails to link.

Will be reenabled after investigating and fixing the problem.
This commit is contained in:
Siva Chandra Reddy 2020-08-07 23:45:18 -07:00
parent db936e0e91
commit f6d74b29d6

View File

@ -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
#)