diff options
| author | Simon Pilgrim <llvm-dev@redking.me.uk> | 2016-08-22 10:49:37 +0000 |
|---|---|---|
| committer | Simon Pilgrim <llvm-dev@redking.me.uk> | 2016-08-22 10:49:37 +0000 |
| commit | 8738786bc1a8655b38da7d073b635d042918139c (patch) | |
| tree | 33c79a66a49280d1555661a877792a933e88e957 /llvm | |
| parent | 855ad82e05247498ebd0e28d8e6c244937a914db (diff) | |
| download | bcm5719-llvm-8738786bc1a8655b38da7d073b635d042918139c.tar.gz bcm5719-llvm-8738786bc1a8655b38da7d073b635d042918139c.zip | |
[ThinLTO][X86] Fix windows build
Windows 'rm' complains about non-existent files if a wildcard is used. Be more explicit about the files deleted to avoid this.
llvm-svn: 279426
Diffstat (limited to 'llvm')
| -rw-r--r-- | llvm/test/ThinLTO/X86/emit_imports.ll | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/llvm/test/ThinLTO/X86/emit_imports.ll b/llvm/test/ThinLTO/X86/emit_imports.ll index 5d11d1537d0..a8215d50230 100644 --- a/llvm/test/ThinLTO/X86/emit_imports.ll +++ b/llvm/test/ThinLTO/X86/emit_imports.ll @@ -12,7 +12,8 @@ ; The imports file for Input/emit_imports.ll is empty as it does not import anything. ; RUN: cat %t2.bc.imports | count 0 -; RUN: rm -f %t*.thinlto.bc %t*.bc.imports +; RUN: rm -f %t1.thinlto.bc %t1.bc.imports +; RUN: rm -f %t2.thinlto.bc %t2.bc.imports ; RUN: llvm-lto2 %t1.bc %t2.bc -o %t.o \ ; RUN: -thinlto-distributed-indexes \ ; RUN: -r=%t1.bc,g, \ |

