Disable threads in a few tests.

They are too slow otherwise. We track the issue in pr32942.

llvm-svn: 303097
This commit is contained in:
Rafael Espindola 2017-05-15 18:29:14 +00:00
parent 41db92f9ae
commit d51400b60a
2 changed files with 6 additions and 3 deletions

View File

@ -1,6 +1,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
// RUN: ld.lld -T %t.script %t.o -o %t
// 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: llvm-readobj -t %t | FileCheck %s
// Test that _start is in the correct section.

View File

@ -11,12 +11,14 @@
// CHECK-NEXT: Section: dm (0xFF00)
// RUN: ld.lld %t -o %t2
// FIXME: threads are disable because the test is too slow with them (PR32942).
// RUN: ld.lld %t -o %t2 --no-threads
// 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
// RUN: ld.lld -T %t.script %t -o %t2
// 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: llvm-readobj -t %t2 | FileCheck --check-prefix=LINKED %s
// Test that _start is in the correct section.