Douglas Gregor | 35b04d6 | 2013-02-07 19:01:24 +0000 | [diff] [blame^] | 1 | // RUN: %clang -fmodules %s -### 2>&1 | FileCheck -check-prefix NO_MODULE_CACHE %s |
| 2 | // RUN: %clang -fmodules -fmodules-cache-path=blarg %s -### 2>&1 | FileCheck -check-prefix WITH_MODULE_CACHE %s |
Douglas Gregor | e162dd4 | 2011-09-14 20:29:10 +0000 | [diff] [blame] | 3 | |
Douglas Gregor | 35b04d6 | 2013-02-07 19:01:24 +0000 | [diff] [blame^] | 4 | // CHECK-NO_MODULE_CACHE: {{clang.*"-fmodules-cache-path"}} |
Douglas Gregor | e162dd4 | 2011-09-14 20:29:10 +0000 | [diff] [blame] | 5 | |
Douglas Gregor | 35b04d6 | 2013-02-07 19:01:24 +0000 | [diff] [blame^] | 6 | // CHECK-WITH_MODULE_CACHE: {{clang.*"-fmodules-cache-path=blarg"}} |