f4a2713ac8
Change-Id: Ia40e9ffdf29b5dab2f122f673ff6802a58bc690f
15 lines
418 B
C++
15 lines
418 B
C++
// REQUIRES: shell
|
|
|
|
// MSYS doesn't emulate umask.
|
|
// FIXME: Could we introduce another feature for it?
|
|
// REQUIRES: shell-preserves-root
|
|
|
|
// 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--
|