diff options
author | Douglas Gregor <dgregor@apple.com> | 2013-02-07 19:01:24 +0000 |
---|---|---|
committer | Douglas Gregor <dgregor@apple.com> | 2013-02-07 19:01:24 +0000 |
commit | 35b04d6fd256f284ff46bfcb69de214aaf93f957 (patch) | |
tree | 221b25916b4004e032a051bea4d58cb8f84ad7e2 /clang/test/Modules/modify-module.m | |
parent | eb849c6bd5cd39369ba7078c03447b371d73db71 (diff) | |
download | bcm5719-llvm-35b04d6fd256f284ff46bfcb69de214aaf93f957.tar.gz bcm5719-llvm-35b04d6fd256f284ff46bfcb69de214aaf93f957.zip |
Rename -fmodule-cache-path <blah> to -fmodules-cache-path=<blah> for consistency.
llvm-svn: 174645
Diffstat (limited to 'clang/test/Modules/modify-module.m')
-rw-r--r-- | clang/test/Modules/modify-module.m | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/clang/test/Modules/modify-module.m b/clang/test/Modules/modify-module.m index 529c7ac9d75..7433e6f7a27 100644 --- a/clang/test/Modules/modify-module.m +++ b/clang/test/Modules/modify-module.m @@ -6,12 +6,12 @@ // RUN: cp %S/Inputs/Modified/A.h %t/include // RUN: cp %S/Inputs/Modified/B.h %t/include // RUN: cp %S/Inputs/Modified/module.map %t/include -// RUN: %clang_cc1 -fmodule-cache-path %t/cache -fmodules -I %t/include %s -verify +// RUN: %clang_cc1 -fmodules-cache-path=%t/cache -fmodules -I %t/include %s -verify // expected-no-diagnostics // RUN: echo '' >> %t/include/B.h -// RUN: %clang_cc1 -fmodule-cache-path %t/cache -fmodules -I %t/include %s -verify +// RUN: %clang_cc1 -fmodules-cache-path=%t/cache -fmodules -I %t/include %s -verify // RUN: echo 'int getA(); int getA2();' > %t/include/A.h -// RUN: %clang_cc1 -fmodule-cache-path %t/cache -fmodules -I %t/include %s -verify +// RUN: %clang_cc1 -fmodules-cache-path=%t/cache -fmodules -I %t/include %s -verify // FIXME: It is intended to suppress this on win32. // REQUIRES: ansi-escape-sequences |