diff --git a/lld/test/ELF/many-alloc-sections.s b/lld/test/ELF/many-alloc-sections.s index d73f95d97c9f..441e5ff32d08 100644 --- a/lld/test/ELF/many-alloc-sections.s +++ b/lld/test/ELF/many-alloc-sections.s @@ -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. diff --git a/lld/test/ELF/many-sections.s b/lld/test/ELF/many-sections.s index ae828689e0c6..ae923889ddc1 100644 --- a/lld/test/ELF/many-sections.s +++ b/lld/test/ELF/many-sections.s @@ -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.