Follow up to d0858bffa11, add missing REQUIRES x86
[llvm-project.git] / llvm / test / tools / llvm-ranlib / error-opening-permission.test
blob1b1bb0def78d78b91f43c4c1ec9db1753c6b152a
1 ## Unsupported on windows as marking files "unreadable" is non-trivial on windows.
2 # UNSUPPORTED: system-windows
4 # RUN: rm -rf %t && split-file %s %t && cd %t
5 # RUN: yaml2obj 1.yaml -o 1.o
6 # RUN: llvm-ar rcS a.a 1.o
7 # RUN: cp a.a b.a && cp a.a c.a && cp a.a d.a
8 # RUN: chmod 100 c.a
9 # RUN: not llvm-ranlib a.a b.a c.a d.a 2>&1 | FileCheck %s --check-prefix=NO-PERMISSION -DMSG=%errc_EACCES
11 # NO-PERMISSION:     error: unable to open 'c.a': [[MSG]]
12 # NO-PERMISSION-NOT: {{.}}
14 ## The archives before c.a (a.a and b.a) have been processed.
15 # RUN: llvm-nm --print-armap a.a | FileCheck %s
16 # RUN: cmp a.a b.a
17 ## The others (c.a and d.a) do not have a symbol table.
18 # RUN: chmod 700 c.a
19 # RUN: llvm-nm --print-armap c.a | FileCheck %s --check-prefix=NOMAP
20 # RUN: cmp c.a d.a
22 # CHECK:      Archive map
23 # CHECK-NEXT: foo in 1.o
24 # CHECK-EMPTY:
26 # NOMAP-NOT: Archive map
28 #--- 1.yaml
29 --- !ELF
30 FileHeader:
31   Class:   ELFCLASS64
32   Data:    ELFDATA2LSB
33   Type:    ET_REL
34   Machine: EM_X86_64
35 Sections:
36   - Name: .text
37     Type: SHT_PROGBITS
38 Symbols:
39   - Name:    foo
40     Binding: STB_GLOBAL
41     Section: .text