diff --git a/clang/test/Misc/permissions.cpp b/clang/test/Misc/permissions.cpp deleted file mode 100644 index 83f6c5720809c5..00000000000000 --- 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 413458006a5a46..00000000000000 --- 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-