diff options
Diffstat (limited to 'llvm/test')
-rw-r--r-- | llvm/test/ThinLTO/X86/cache-config.ll | 2 | ||||
-rw-r--r-- | llvm/test/ThinLTO/X86/cache.ll | 4 | ||||
-rw-r--r-- | llvm/test/ThinLTO/X86/empty_module_with_cache.ll | 4 | ||||
-rw-r--r-- | llvm/test/tools/gold/X86/cache.ll | 4 |
4 files changed, 7 insertions, 7 deletions
diff --git a/llvm/test/ThinLTO/X86/cache-config.ll b/llvm/test/ThinLTO/X86/cache-config.ll index a947969f669..9a92dc31774 100644 --- a/llvm/test/ThinLTO/X86/cache-config.ll +++ b/llvm/test/ThinLTO/X86/cache-config.ll @@ -1,4 +1,4 @@ -; RUN: rm -rf %t.cache && mkdir %t.cache +; RUN: rm -rf %t.cache ; RUN: opt -module-hash -module-summary %s -o %t.bc ; RUN: llvm-lto2 -o %t.o %t.bc -cache-dir %t.cache -r=%t.bc,globalfunc,plx diff --git a/llvm/test/ThinLTO/X86/cache.ll b/llvm/test/ThinLTO/X86/cache.ll index b796b00fc5d..d654d3468e3 100644 --- a/llvm/test/ThinLTO/X86/cache.ll +++ b/llvm/test/ThinLTO/X86/cache.ll @@ -10,7 +10,7 @@ ; RUN: ls %t.cache | count 1 ; Verify that enabling caching is ignoring module without hash with llvm-lto2 -; RUN: rm -Rf %t.cache && mkdir %t.cache +; RUN: rm -Rf %t.cache ; RUN: llvm-lto2 -o %t.o %t2.bc %t.bc -cache-dir %t.cache \ ; RUN: -r=%t2.bc,_main,plx \ ; RUN: -r=%t2.bc,_globalfunc,lx \ @@ -30,7 +30,7 @@ ; RUN: ls %t.cache | count 3 ; Verify that enabling caching is working with llvm-lto2 -; RUN: rm -Rf %t.cache && mkdir %t.cache +; RUN: rm -Rf %t.cache ; RUN: llvm-lto2 -o %t.o %t2.bc %t.bc -cache-dir %t.cache \ ; RUN: -r=%t2.bc,_main,plx \ ; RUN: -r=%t2.bc,_globalfunc,lx \ diff --git a/llvm/test/ThinLTO/X86/empty_module_with_cache.ll b/llvm/test/ThinLTO/X86/empty_module_with_cache.ll index 3e16c395a89..42692fd4c6e 100644 --- a/llvm/test/ThinLTO/X86/empty_module_with_cache.ll +++ b/llvm/test/ThinLTO/X86/empty_module_with_cache.ll @@ -8,7 +8,7 @@ ; RUN: ls %t.cache | count 3 ; Verify that enabling caching is working with llvm-lto2 -; RUN: rm -Rf %t.cache && mkdir %t.cache +; RUN: rm -Rf %t.cache ; RUN: llvm-lto2 -o %t.o %t2.bc %t.bc -cache-dir %t.cache \ ; RUN: -r=%t2.bc,_main,plx ; RUN: ls %t.cache | count 2 @@ -25,7 +25,7 @@ ; RUN: ls %t.cache | count 1 ; Verify that caching is disabled for module without hash, with llvm-lto2 -; RUN: rm -Rf %t.cache && mkdir %t.cache +; RUN: rm -Rf %t.cache ; RUN: llvm-lto2 -o %t.o %t2.bc %t.bc -cache-dir %t.cache \ ; RUN: -r=%t2.bc,_main,plx ; RUN: ls %t.cache | count 0 diff --git a/llvm/test/tools/gold/X86/cache.ll b/llvm/test/tools/gold/X86/cache.ll index cef983c4a1a..8d22a8606df 100644 --- a/llvm/test/tools/gold/X86/cache.ll +++ b/llvm/test/tools/gold/X86/cache.ll @@ -2,7 +2,7 @@ ; RUN: opt -module-summary %s -o %t.o ; RUN: opt -module-summary %p/Inputs/cache.ll -o %t2.o -; RUN: rm -Rf %t.cache && mkdir %t.cache +; RUN: rm -Rf %t.cache ; RUN: %gold -m elf_x86_64 -plugin %llvmshlibdir/LLVMgold.so \ ; RUN: --plugin-opt=thinlto \ ; RUN: --plugin-opt=cache-dir=%t.cache \ @@ -16,7 +16,7 @@ ; RUN: opt -module-hash -module-summary %s -o %t.o ; RUN: opt -module-hash -module-summary %p/Inputs/cache.ll -o %t2.o -; RUN: rm -Rf %t.cache && mkdir %t.cache +; RUN: rm -Rf %t.cache ; RUN: %gold -m elf_x86_64 -plugin %llvmshlibdir/LLVMgold.so \ ; RUN: --plugin-opt=thinlto \ ; RUN: --plugin-opt=cache-dir=%t.cache \ |