forked from OSchip/llvm-project
Remove umask tests
These tests were added in18627115f4
ande08b59f81d
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
This commit is contained in:
parent
9b23407063
commit
de0a224711
|
@ -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--
|
|
@ -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-
|
Loading…
Reference in New Issue