Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / lld / test / ELF / error-handling-script-windows.bat
blob64c4e95f043c6bc7be8a9434efef42ddb498af38
1 :: REQUIRES: x86, system-windows
2 :: RUN: echo | llvm-mc -filetype=obj -triple=x86_64-unknown-linux - -o %t0.o
3 :: RUN: not ld.lld -o /dev/null -lidontexist --error-handling-script=%s %t0.o 2>&1 |\
4 :: RUN:   FileCheck --check-prefix=CHECK-LIB %s
5 :: RUN: not ld.lld -o /dev/null -lidontexist --error-handling-script=%s.nope %t0.o 2>&1 |\
6 :: RUN:   FileCheck --check-prefix=CHECK-SCRIPT-DOES-NOT-EXIST -DFILE=%s.nope %s
7 ::
8 :: CHECK-LIB:      script: info: called with missing-lib idontexist
9 :: CHECK-LIB-NEXT: ld.lld: error: unable to find library -lidontexist
11 :: CHECK-SCRIPT-DOES-NOT-EXIST:      ld.lld: error: unable to find library -lidontexist
12 :: CHECK-SCRIPT-DOES-NOT-EXIST-NEXT: ld.lld: error: error handling script '[[FILE]]' failed to execute
14 @echo off
15 echo "script: info: called with %*"