2013-07-06 05:13:58 +08:00
|
|
|
// REQUIRES: shell
|
|
|
|
|
2013-07-08 14:45:16 +08:00
|
|
|
// MSYS doesn't emulate umask.
|
|
|
|
// FIXME: Could we introduce another feature for it?
|
|
|
|
// REQUIRES: shell-preserves-root'
|
|
|
|
|
2013-07-06 05:13:58 +08:00
|
|
|
// RUN: umask 000
|
|
|
|
// RUN: %clang_cc1 -emit-llvm-bc %s -o %t
|
|
|
|
// RUN: ls -l %t | FileCheck --check-prefix=CHECK000 %s
|
|
|
|
// CHECK000: rw-rw-rw-
|
|
|
|
|
|
|
|
// RUN: umask 002
|
|
|
|
// RUN: %clang_cc1 -emit-llvm-bc %s -o %t
|
|
|
|
// RUN: ls -l %t | FileCheck --check-prefix=CHECK002 %s
|
|
|
|
// CHECK002: rw-rw-r--
|