[Frontend] Remove unused includes (NFC) (#116927)
[llvm-project.git] / llvm / test / tools / llvm-ar / read-only-archive.test
blobe3659903d8cb3643f52ef2327105530a01d7c6ae
1 ## Test that read-only archives cannot be edited
3 # RUN: rm -rf %t && mkdir -p %t
4 # RUN: touch %t/1.txt
5 # RUN: touch %t/2.txt
6 # RUN: touch %t/3.txt
8 # RUN: llvm-ar rc %t/archive.a %t/1.txt %t/2.txt
10 ## Make read only:
11 # RUN: chmod 444 %t/archive.a
13 # RUN: not llvm-ar r %t/archive.a %t/3.txt \
14 # RUN:   FileCheck %s --check-prefix=ERROR -DFILE=%t/archive.a -DMSG=%errc_ENOENT
16 # ERROR: error: [[FILE]]: [[MSG]]
18 # RUN: not llvm-ar q %t/archive.a %t/3.txt \
19 # RUN:   FileCheck %s --check-prefix=ERROR -DFILE=%t/archive.a -DMSG=%errc_ENOENT
21 # RUN: not llvm-ar m %t/archive.a t/1.txt \
22 # RUN:   FileCheck %s --check-prefix=ERROR-2 -DFILE=%t/archive.a
24 # ERROR-2: error: [[FILE]]: permission denied
26 # RUN: llvm-ar t %t/archive.a \
27 # RUN:   | FileCheck %s --check-prefix=ARCHIVE --match-full-lines --implicit-check-not {{.}}
29 # ARCHIVE: 1.txt
30 # ARCHIVE-NEXT: 2.txt