Index: test/ELF/many-alloc-sections.s =================================================================== --- test/ELF/many-alloc-sections.s +++ test/ELF/many-alloc-sections.s @@ -1,6 +1,6 @@ // 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 +// 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. Index: test/ELF/many-sections.s =================================================================== --- test/ELF/many-sections.s +++ test/ELF/many-sections.s @@ -11,12 +11,12 @@ // CHECK-NEXT: Section: dm (0xFF00) -// RUN: ld.lld %t -o %t2 +// 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 +// 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.