16 lines · plain
1:: REQUIRES: x86, system-windows2:: RUN: echo | llvm-mc -filetype=obj -triple=x86_64-unknown-linux - -o %t0.o3:: RUN: not ld.lld -o /dev/null -lidontexist --error-handling-script=%s %t0.o 2>&1 |\4:: RUN: FileCheck --check-prefix=CHECK-LIB %s5:: 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 %s7::8:: CHECK-LIB: script: info: called with missing-lib idontexist9:: CHECK-LIB-NEXT: error: unable to find library -lidontexist10 11:: CHECK-SCRIPT-DOES-NOT-EXIST: error: unable to find library -lidontexist12:: CHECK-SCRIPT-DOES-NOT-EXIST-NEXT: error: error handling script '[[FILE]]' failed to execute13 14@echo off15echo "script: info: called with %*"16