[compiler-rt] 6c90f87 - [ORC-RT] Add -num-threads=0 to testcase.
Lang Hames via llvm-commits
llvm-commits at lists.llvm.org
Thu Feb 20 21:55:57 PST 2025
Author: Lang Hames
Date: 2025-02-21T16:55:49+11:00
New Revision: 6c90f87b744533d5fa44f51f92a3bbd5613b708d
URL: https://github.com/llvm/llvm-project/commit/6c90f87b744533d5fa44f51f92a3bbd5613b708d
DIFF: https://github.com/llvm/llvm-project/commit/6c90f87b744533d5fa44f51f92a3bbd5613b708d.diff
LOG: [ORC-RT] Add -num-threads=0 to testcase.
This testcase depends on stable output, which isn't guaranteed when
concurrent linking is enabled (the default).
Added:
Modified:
compiler-rt/test/orc/TestCases/Generic/lazy-link.ll
Removed:
################################################################################
diff --git a/compiler-rt/test/orc/TestCases/Generic/lazy-link.ll b/compiler-rt/test/orc/TestCases/Generic/lazy-link.ll
index 1c375bcf1e62f..da32703a7ab1c 100644
--- a/compiler-rt/test/orc/TestCases/Generic/lazy-link.ll
+++ b/compiler-rt/test/orc/TestCases/Generic/lazy-link.ll
@@ -9,8 +9,9 @@
; RUN: %clang -c -o %t/bar.o %S/Inputs/bar-ret-void-weak.ll
; RUN: %clang -c -o %t/baz.o %S/Inputs/baz-ret-void-hidden.ll
; RUN: %clang -c -o %t/main.o %s
-; RUN: %llvm_jitlink -noexec -show-linked-files %t/main.o -lazy %t/foo.o \
-; RUN: -lazy %t/x.o -lazy %t/bar.o -lazy %t/baz.o | FileCheck %s
+; RUN: %llvm_jitlink -num-threads=0 -noexec -show-linked-files %t/main.o \
+; RUN: -lazy %t/foo.o -lazy %t/x.o -lazy %t/bar.o -lazy %t/baz.o \
+; RUN: | FileCheck %s
;
; UNSUPPORTED: system-windows
; REQUIRES: target={{(arm|aarch|x86_)64.*}}
More information about the llvm-commits
mailing list