You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
299 B
12 lines
299 B
// 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--
|