Drop --no-threads from tests.

The performance problem with --threads is fixed.

llvm-svn: 312738
This commit is contained in:
Rafael Espindola 2017-09-07 19:07:49 +00:00
parent 78137ec868
commit c20759038b
1 changed files with 1 additions and 1 deletions

View File

@ -2,7 +2,7 @@
// RUN: llvm-mc -filetype=obj -triple x86_64-pc-linux-gnu %s -o %t.o
// 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 -o %t --no-threads
// RUN: ld.lld -T %t.script %t.o -o %t
// RUN: llvm-readobj -t %t | FileCheck %s
// Test that _start is in the correct section.