diff options
author | Ben Langmuir <blangmuir@apple.com> | 2016-07-14 22:53:23 +0000 |
---|---|---|
committer | Ben Langmuir <blangmuir@apple.com> | 2016-07-14 22:53:23 +0000 |
commit | 6ecd7732024886eef7cefddb23c84d6529ef3e1e (patch) | |
tree | 4814eb2846d28e710f1c3904840b95a98ed8c0a9 | |
parent | 74730d9ab08f8f82c848de225bb15d3249bedcf5 (diff) | |
download | bcm5719-llvm-6ecd7732024886eef7cefddb23c84d6529ef3e1e.tar.gz bcm5719-llvm-6ecd7732024886eef7cefddb23c84d6529ef3e1e.zip |
Remove the new module cache from the index-module test
Forgot to add the new cache to the `rm -rf` line. This broke some bots
when trying to load a module built with an older compiler.
llvm-svn: 275496
-rw-r--r-- | clang/test/Index/index-module.m | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/test/Index/index-module.m b/clang/test/Index/index-module.m index 023fca3e4bd..d1c0b36b389 100644 --- a/clang/test/Index/index-module.m +++ b/clang/test/Index/index-module.m @@ -3,7 +3,7 @@ @import DependsOnModule; int glob; -// RUN: rm -rf %t.cache +// RUN: rm -rf %t.cache %t.cache.sys // RUN: c-index-test -index-file %s -fmodules-cache-path=%t.cache -fmodules -F %S/../Modules/Inputs \ // RUN: -Xclang -fdisable-module-hash | FileCheck %s // RUN: c-index-test -index-file %s -fmodules-cache-path=%t.cache.sys -fmodules -iframework %S/../Modules/Inputs \ |