Rafael Espindola | e08b59f | 2013-07-16 14:10:07 +0000 | [diff] [blame^] | 1 | ; REQUIRES: shell |
2 | |||||
3 | ; RUN: umask 000 | ||||
4 | ; RUN: rm -f %t.000 | ||||
5 | ; RUN: llvm-as %s -o %t.000 | ||||
6 | ; RUN: ls -l %t.000 | FileCheck --check-prefix=CHECK000 %s | ||||
7 | ; CHECK000: rw-rw-rw | ||||
8 | |||||
9 | ; RUN: umask 002 | ||||
10 | ; RUN: rm -f %t.002 | ||||
11 | ; RUN: llvm-as %s -o %t.002 | ||||
12 | ; RUN: ls -l %t.002 | FileCheck --check-prefix=CHECK002 %s | ||||
13 | ; CHECK002: rw-rw-r- |