diff options
author | Alexandre Ganea <alexandre.ganea@ubisoft.com> | 2020-01-10 21:05:59 -0500 |
---|---|---|
committer | Alexandre Ganea <alexandre.ganea@ubisoft.com> | 2020-01-10 21:05:59 -0500 |
commit | de0a2247115729eade8249267a47f96f070a7666 (patch) | |
tree | bc982b69292a70a8e17f72b4bb999d28f44ca51a | |
parent | 9b23407063ca41901e9e272bacf8b33eee8251c4 (diff) | |
download | bcm5719-llvm-de0a2247115729eade8249267a47f96f070a7666.tar.gz bcm5719-llvm-de0a2247115729eade8249267a47f96f070a7666.zip |
Remove umask tests
These tests were added in 18627115f4d2db5dc73207e0b5312f52536be7dd and e08b59f81d950bd5c8b8528fcb3ac4230c7b736c for validating a refactoring.
Removing because they break on ACL-controlled folders on Ubuntu, and their added value is low.
Differential Revision: https://reviews.llvm.org/D70854
-rw-r--r-- | clang/test/Misc/permissions.cpp | 11 | ||||
-rw-r--r-- | llvm/test/Other/umask.ll | 14 |
2 files changed, 0 insertions, 25 deletions
diff --git a/clang/test/Misc/permissions.cpp b/clang/test/Misc/permissions.cpp deleted file mode 100644 index 83f6c572080..00000000000 --- a/clang/test/Misc/permissions.cpp +++ /dev/null @@ -1,11 +0,0 @@ -// REQUIRES: shell - -// 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-- diff --git a/llvm/test/Other/umask.ll b/llvm/test/Other/umask.ll deleted file mode 100644 index 413458006a5..00000000000 --- a/llvm/test/Other/umask.ll +++ /dev/null @@ -1,14 +0,0 @@ -; REQUIRES: shell -; XFAIL: windows-gnu - -; RUN: umask 000 -; RUN: rm -f %t.000 -; RUN: llvm-as %s -o %t.000 -; RUN: ls -l %t.000 | FileCheck --check-prefix=CHECK000 %s -; CHECK000: rw-rw-rw - -; RUN: umask 002 -; RUN: rm -f %t.002 -; RUN: llvm-as %s -o %t.002 -; RUN: ls -l %t.002 | FileCheck --check-prefix=CHECK002 %s -; CHECK002: rw-rw-r- |