diff options
author | Douglas Gregor <dgregor@apple.com> | 2011-09-12 20:41:59 +0000 |
---|---|---|
committer | Douglas Gregor <dgregor@apple.com> | 2011-09-12 20:41:59 +0000 |
commit | 1e44e0229288aa4826bdd2e62546b9156032f718 (patch) | |
tree | a396ecf7fd708f29746c6339a5c01fb0c0c0cf8e /clang/test/Modules/load_failure.c | |
parent | 4a9eb5f8dc613a9afe925ce3c277a7078e1bb8a1 (diff) | |
download | bcm5719-llvm-1e44e0229288aa4826bdd2e62546b9156032f718.tar.gz bcm5719-llvm-1e44e0229288aa4826bdd2e62546b9156032f718.zip |
Introduce a cc1-level option to provide the path to the module cache,
where the compiler will look for module files. Eliminates the
egregious hack where we looked into the header search paths for
modules.
llvm-svn: 139538
Diffstat (limited to 'clang/test/Modules/load_failure.c')
-rw-r--r-- | clang/test/Modules/load_failure.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/clang/test/Modules/load_failure.c b/clang/test/Modules/load_failure.c index f034c787396..4685a41ef6b 100644 --- a/clang/test/Modules/load_failure.c +++ b/clang/test/Modules/load_failure.c @@ -7,10 +7,10 @@ __import_module__ load_failure; #endif // RUN: %clang_cc1 -x c++ -emit-module -o %T/load_failure.pcm %S/Inputs/load_failure.h -// RUN: %clang_cc1 -I %T %s -DNONEXISTENT 2>&1 | FileCheck -check-prefix=CHECK-NONEXISTENT %s +// RUN: %clang_cc1 -fmodule-cache-path %T %s -DNONEXISTENT 2>&1 | FileCheck -check-prefix=CHECK-NONEXISTENT %s // CHECK-NONEXISTENT: load_failure.c:2:19: fatal error: module 'load_nonexistent' not found -// RUN: not %clang_cc1 -I %T %s -DFAILURE 2> %t +// RUN: not %clang_cc1 -fmodule-cache-path %T %s -DFAILURE 2> %t // RUN: FileCheck -check-prefix=CHECK-FAILURE %s < %t // FIXME: Clean up diagnostic text below and give it a location |