diff options
author | George Rimar <grimar@accesssoftek.com> | 2017-08-21 08:10:35 +0000 |
---|---|---|
committer | George Rimar <grimar@accesssoftek.com> | 2017-08-21 08:10:35 +0000 |
commit | 8902bb8e62ee3be9ed2a8c6b0f4c9c5ddfc6418f (patch) | |
tree | d9f68156b7e1d3ef29fe88b4125c056ac8dd7a2f | |
parent | d7305ef06c02cbb2e20b2d4fa2d6d368ce4f641e (diff) | |
download | bcm5719-llvm-8902bb8e62ee3be9ed2a8c6b0f4c9c5ddfc6418f.tar.gz bcm5719-llvm-8902bb8e62ee3be9ed2a8c6b0f4c9c5ddfc6418f.zip |
[ELF] - Enable threading in many-sections.s testcase. NFC.
This is PR32942, previously threading was disabled
because slowed down this testcase a lot.
It was fixed in r311312.
llvm-svn: 311313
-rw-r--r-- | lld/test/ELF/many-sections.s | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/lld/test/ELF/many-sections.s b/lld/test/ELF/many-sections.s index 7ef0f7ceaac..e3b845f305a 100644 --- a/lld/test/ELF/many-sections.s +++ b/lld/test/ELF/many-sections.s @@ -11,15 +11,12 @@ // CHECK-NEXT: Other: 0 // CHECK-NEXT: Section: dm (0xFF00) - -// FIXME: threads are disable because the test is too slow with them (PR32942). -// RUN: ld.lld %t -o %t2 --no-threads +// RUN: ld.lld %t -o %t2 // RUN: llvm-readobj -t %t2 | FileCheck --check-prefix=LINKED %s // Test also with a linker script. // RUN: echo "SECTIONS { . = SIZEOF_HEADERS; .text : { *(.text) } }" > %t.script -// FIXME: threads are disable because the test is too slow with them (PR32942). -// RUN: ld.lld -T %t.script %t -o %t2 --no-threads +// RUN: ld.lld -T %t.script %t -o %t2 // RUN: llvm-readobj -t %t2 | FileCheck --check-prefix=LINKED %s // Test that _start is in the correct section. |