diff options
Diffstat (limited to 'clang/test/Modules/Werror-Wsystem-headers.m')
-rw-r--r-- | clang/test/Modules/Werror-Wsystem-headers.m | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/clang/test/Modules/Werror-Wsystem-headers.m b/clang/test/Modules/Werror-Wsystem-headers.m deleted file mode 100644 index c4cd1a6378c..00000000000 --- a/clang/test/Modules/Werror-Wsystem-headers.m +++ /dev/null @@ -1,23 +0,0 @@ -// REQUIRES: shell -// RUN: rm -rf %t -// RUN: rm -rf %t-saved -// RUN: mkdir %t-saved - -// Initial module build -// RUN: %clang_cc1 -fmodules -fmodules-cache-path=%t -fdisable-module-hash \ -// RUN: -isysroot %S/Inputs/System -triple x86_64-apple-darwin10 -fsyntax-only %s -verify -// RUN: cp %t/cstd.pcm %t-saved/cstd.pcm - -// Even with -Werror don't rebuild a system module -// RUN: %clang_cc1 -fmodules -fmodules-cache-path=%t -fdisable-module-hash \ -// RUN: -isysroot %S/Inputs/System -triple x86_64-apple-darwin10 -fsyntax-only %s -verify -Werror -// RUN: diff %t/cstd.pcm %t-saved/cstd.pcm - -// Unless -Wsystem-headers is on -// RUN: %clang_cc1 -fmodules -fmodules-cache-path=%t -fdisable-module-hash \ -// RUN: -isysroot %S/Inputs/System -triple x86_64-apple-darwin10 -fsyntax-only %s -verify \ -// RUN: -Werror=unused -Wsystem-headers -// RUN: not diff %t/cstd.pcm %t-saved/cstd.pcm - -// expected-no-diagnostics -@import cstd; |