summaryrefslogtreecommitdiff
path: root/test/Misc/permissions.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'test/Misc/permissions.cpp')
-rw-r--r--test/Misc/permissions.cpp15
1 files changed, 0 insertions, 15 deletions
diff --git a/test/Misc/permissions.cpp b/test/Misc/permissions.cpp
deleted file mode 100644
index 5b89eabcf2..0000000000
--- a/test/Misc/permissions.cpp
+++ /dev/null
@@ -1,15 +0,0 @@
-// 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--