[PATCH] D43410: Do not automatically append --full-shutdown to lld tests.

Peter Collingbourne via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Fri Feb 16 15:29:23 PST 2018


pcc added inline comments.


================
Comment at: lld/test/ELF/lto/timepasses.ll:3
 ; RUN: llvm-as %s -o %t.o
-; RUN: lld -flavor gnu %t.o -o %t.so -shared -mllvm -time-passes 2>&1 | FileCheck %s
+; RUN: ld.lld --no-full-shutdown %t.o -o %t.so -shared -mllvm \
+; RUN:   -time-passes 2>&1 | FileCheck %s
----------------
Could this be `env LLD_IN_TEST=0 ld.lld %t.o ...`? Then you wouldn't need a `--no-full-shutdown` flag.


https://reviews.llvm.org/D43410





More information about the llvm-commits mailing list