Follow up to d0858bffa11, add missing REQUIRES x86
[llvm-project.git] / llvm / test / tools / llvm-objcopy / ELF / respect-umask.test
blob376e33a217819973506e922f790c00b8e42a6d33
1 ## This tests that the umask is respected when
2 ## assigning permissions of output files.
4 ## Windows has no umask so this test makes no sense, nor would
5 ## it work because there is no umask(1) in a Windows environment
6 # UNSUPPORTED: system-windows
7 # REQUIRES: shell
9 # RUN: rm -f %t
10 # RUN: touch %t
11 # RUN: chmod 0755 %t
12 # RUN: ls -l %t | cut -f 1 -d ' ' > %t.0755
13 # RUN: chmod 0600 %t
14 # RUN: ls -l %t | cut -f 1 -d ' ' > %t.0600
15 # RUN: chmod 0655 %t
16 # RUN: ls -l %t | cut -f 1 -d ' ' > %t.0655
18 # RUN: yaml2obj %s -o %t
20 # RUN: umask 0022
21 # RUN: chmod 0777 %t
22 # RUN: llvm-objcopy %t %t1
23 # RUN: ls -l %t1 | cut -f 1 -d ' ' | cmp - %t.0755
25 # RUN: umask 0177
26 # RUN: llvm-objcopy %t %t2
27 # RUN: ls -l %t2 | cut -f 1 -d ' ' | cmp - %t.0600
29 # RUN: umask 0122
30 # RUN: llvm-objcopy %t %t3
31 # RUN: ls -l %t3 | cut -f 1 -d ' ' | cmp - %t.0655
33 --- !ELF
34 FileHeader:
35   Class:   ELFCLASS64
36   Data:    ELFDATA2LSB
37   Type:    ET_EXEC
38   Machine: EM_X86_64