aboutsummaryrefslogtreecommitdiff
path: root/test/Modules
diff options
context:
space:
mode:
authorDouglas Gregor <dgregor@apple.com>2013-02-07 22:59:12 +0000
committerDouglas Gregor <dgregor@apple.com>2013-02-07 22:59:12 +0000
commit250172a851a886c0763b5fd61c20bf21791c21e9 (patch)
tree8386e4b531c1ac09dbd2e41591f3269b6f29e381 /test/Modules
parent31c4a4b0171aac01d2a6aedb4960ade7ee7d998a (diff)
Form the default -fmodules-cache-path= properly.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@174674 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/Modules')
-rw-r--r--test/Modules/driver.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/Modules/driver.c b/test/Modules/driver.c
index 20aac0015c..0a787b996a 100644
--- a/test/Modules/driver.c
+++ b/test/Modules/driver.c
@@ -1,6 +1,6 @@
// RUN: %clang -fmodules %s -### 2>&1 | FileCheck -check-prefix NO_MODULE_CACHE %s
// RUN: %clang -fmodules -fmodules-cache-path=blarg %s -### 2>&1 | FileCheck -check-prefix WITH_MODULE_CACHE %s
-// CHECK-NO_MODULE_CACHE: {{clang.*"-fmodules-cache-path"}}
+// CHECK-NO_MODULE_CACHE: {{clang.*"-fmodules-cache-path=.*clang-module-cache"}}
// CHECK-WITH_MODULE_CACHE: {{clang.*"-fmodules-cache-path=blarg"}}