Drop the number of thinlto jobs in some tests to avoid crashing on 32-bit windows
authorHans Wennborg <hans@chromium.org>
Tue, 7 Apr 2020 07:52:12 +0000 (09:52 +0200)
committerHans Wennborg <hans@chromium.org>
Tue, 7 Apr 2020 07:52:12 +0000 (09:52 +0200)
lld/test/COFF/thinlto.ll
lld/test/ELF/lto/thinlto.ll
lld/test/wasm/lto/thinlto.ll

index a839072..8727ac0 100644 (file)
@@ -11,7 +11,7 @@
 ; RUN: llvm-nm %T/thinlto/main.exe1.lto.obj | FileCheck %s
 ; RUN: lld-link /lldsavetemps /out:%T/thinlto/main.exe /entry:main /subsystem:console %T/thinlto/main.obj %T/thinlto/foo.obj /opt:lldltojobs=all
 ; RUN: llvm-nm %T/thinlto/main.exe1.lto.obj | FileCheck %s
-; RUN: lld-link /lldsavetemps /out:%T/thinlto/main.exe /entry:main /subsystem:console %T/thinlto/main.obj %T/thinlto/foo.obj /opt:lldltojobs=1000
+; RUN: lld-link /lldsavetemps /out:%T/thinlto/main.exe /entry:main /subsystem:console %T/thinlto/main.obj %T/thinlto/foo.obj /opt:lldltojobs=100
 ; RUN: llvm-nm %T/thinlto/main.exe1.lto.obj | FileCheck %s
 ; RUN: not lld-link /lldsavetemps /out:%T/thinlto/main.exe /entry:main /subsystem:console %T/thinlto/main.obj %T/thinlto/foo.obj /opt:lldltojobs=foo 2>&1 | FileCheck %s --check-prefix=BAD-JOBS
 ; BAD-JOBS: error: /opt:lldltojobs: invalid job count: foo
index 50e31d1..918f6ff 100644 (file)
@@ -42,7 +42,7 @@
 
 ; Test with many more threads than the system has
 ; RUN: rm -f %t31.lto.o %t32.lto.o
-; RUN: ld.lld -save-temps --thinlto-jobs=1000 -shared %t1.o %t2.o -o %t3
+; RUN: ld.lld -save-temps --thinlto-jobs=100 -shared %t1.o %t2.o -o %t3
 ; RUN: llvm-nm %t31.lto.o | FileCheck %s --check-prefix=NM1
 ; RUN: llvm-nm %t32.lto.o | FileCheck %s --check-prefix=NM2
 
index da42469..6c6fada 100644 (file)
@@ -34,7 +34,7 @@
 
 ; Test with many more threads than the system has
 ; RUN: rm -f %t31.lto.o %t32.lto.o
-; RUN: wasm-ld -r -save-temps --thinlto-jobs=1000 %t1.o %t2.o -o %t3
+; RUN: wasm-ld -r -save-temps --thinlto-jobs=100 %t1.o %t2.o -o %t3
 ; RUN: llvm-nm %t31.lto.o | FileCheck %s --check-prefix=NM1
 ; RUN: llvm-nm %t32.lto.o | FileCheck %s --check-prefix=NM2