[Frontend] Remove unused includes (NFC) (#116927)
[llvm-project.git] / llvm / test / tools / llvm-ar / mri-errors.test
bloba6980f27caff3116eff1057ddca697ea8f3b0ed7
1 ## Test different MRI comment formats and whitespace.
3 # RUN: rm -rf %t && mkdir -p %t
5 # RUN: echo "create %t/mri.ar" > %t/script1.mri
6 # RUN: echo "addlib %t/missing.a" >> %t/script1.mri
8 # RUN: not llvm-ar -M < %t/script1.mri 2>&1 | FileCheck --check-prefix=SCRIPT1 %s
9 # SCRIPT1: error: script line 2: could not open library
11 # RUN: echo "create %t/mri.ar" > %t/script2.mri
12 # RUN: echo "addlib %t/bad.a" >> %t/script2.mri
14 # RUN: echo "bad archive" > %t/bad.a
16 # RUN: not llvm-ar -M < %t/script2.mri 2>&1 | FileCheck --check-prefix=SCRIPT2 %s
17 # SCRIPT2: error: script line 2: could not parse library
19 # RUN: echo "create %t/mri.ar" > %t/script3.mri
20 # RUN: echo "create %t/second.ar" >> %t/script3.mri
22 # RUN: not llvm-ar -M < %t/script3.mri 2>&1 | FileCheck --check-prefix=SCRIPT3 %s
23 # SCRIPT3: error: script line 2: editing multiple archives not supported
25 # RUN: echo "save" > %t/script4.mri
26 # RUN: echo "create %t/mri.ar" >> %t/script4.mri
28 # RUN: not llvm-ar -M < %t/script4.mri 2>&1 | FileCheck --check-prefix=SCRIPT4 %s
29 # SCRIPT4: error: script line 2: file already saved
31 # RUN: echo "create %t/mri.ar" > %t/script5.mri
32 # RUN: echo "bad command" >> %t/script5.mri
34 # RUN: not llvm-ar -M < %t/script5.mri 2>&1 | FileCheck --check-prefix=SCRIPT5 %s
35 # SCRIPT5: error: script line 2: unknown command: bad
37 # RUN: echo "bad command" | not llvm-ar -M 2>&1 | FileCheck --check-prefix=SCRIPT6 %s
38 # SCRIPT6: error: script line 1: unknown command: bad
40 # RUN: not llvm-ar -M rc %t/mri.ar 2>&1 | FileCheck --check-prefix=SCRIPT7 %s
41 # SCRIPT7: error: cannot mix -M and other options