diff options
| author | Justin Bogner <mail@justinbogner.com> | 2014-10-03 22:18:49 +0000 |
|---|---|---|
| committer | Justin Bogner <mail@justinbogner.com> | 2014-10-03 22:18:49 +0000 |
| commit | fa9df7af07fa888feec91b06320b9091d4a3fb52 (patch) | |
| tree | 281237ddc6ca3b837892d65713bf4510bcca2a34 /clang/test/Modules/module_file_info.m | |
| parent | 3c3b48805f1839539c13af3021c9bed5048a8956 (diff) | |
| download | bcm5719-llvm-fa9df7af07fa888feec91b06320b9091d4a3fb52.tar.gz bcm5719-llvm-fa9df7af07fa888feec91b06320b9091d4a3fb52.zip | |
test: Disable standard system includes in %clang_cc1
This adds -nostdsysteminc to the %clang_cc1 expansion, which should
make it harder to accidentally write tests that depend on headers in
/usr/include. It also updates a few tests that use -isysroot <x> and a
darwin triple to omit the triple and use -isystem <x>/usr/include
instead, making them a little bit more general.
Incidentally, this fixes a test failure I'm seeing on darwin in
Modules/stddef.c, that happens because my system finds a stddef.h in
/usr/include.
llvm-svn: 219030
Diffstat (limited to 'clang/test/Modules/module_file_info.m')
| -rw-r--r-- | clang/test/Modules/module_file_info.m | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/clang/test/Modules/module_file_info.m b/clang/test/Modules/module_file_info.m index 2447a747e3d..1b0a838bf82 100644 --- a/clang/test/Modules/module_file_info.m +++ b/clang/test/Modules/module_file_info.m @@ -17,8 +17,8 @@ // CHECK: Target options: // CHECK: Triple: -// CHECK: CPU: -// CHECK: ABI: +// CHECK: CPU: +// CHECK: ABI: // CHECK: Diagnostic options: // CHECK: IgnoreWarnings: Yes @@ -28,7 +28,7 @@ // CHECK: Header search options: // CHECK: System root [-isysroot=]: '/' // CHECK: Use builtin include directories [-nobuiltininc]: Yes -// CHECK: Use standard system include directories [-nostdinc]: Yes +// CHECK: Use standard system include directories [-nostdinc]: No // CHECK: Use standard C++ include directories [-nostdinc++]: Yes // CHECK: Use libc++ (rather than libstdc++) [-stdlib=]: |

