diff options
author | Teresa Johnson <tejohnson@google.com> | 2016-05-05 14:10:57 +0000 |
---|---|---|
committer | Teresa Johnson <tejohnson@google.com> | 2016-05-05 14:10:57 +0000 |
commit | f8cbd6591f8453ae2c015cbfffb66a1509ec3f32 (patch) | |
tree | 7594a9569af20dea6b8c4c5e9f40757ff998e9cd | |
parent | d89fbca21dd10142b320324c4abae43eed2e12c5 (diff) | |
download | bcm5719-llvm-f8cbd6591f8453ae2c015cbfffb66a1509ec3f32.tar.gz bcm5719-llvm-f8cbd6591f8453ae2c015cbfffb66a1509ec3f32.zip |
Fix Windows bot failures from r268627
Remove "/" path separator from expected pattern which should fix a
couple of Windows bots that have failed:
http://lab.llvm.org:8011/builders/llvm-clang-lld-x86_64-scei-ps4-windows10pro-fast/builds/4816
http://bb.pgr.jp/builders/ninja-clang-i686-msc19-R/builds/2610
llvm-svn: 268629
-rw-r--r-- | llvm/test/ThinLTO/X86/distributed_indexes.ll | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/llvm/test/ThinLTO/X86/distributed_indexes.ll b/llvm/test/ThinLTO/X86/distributed_indexes.ll index e4c7e9bab43..0700488b5e9 100644 --- a/llvm/test/ThinLTO/X86/distributed_indexes.ll +++ b/llvm/test/ThinLTO/X86/distributed_indexes.ll @@ -8,8 +8,8 @@ ; The backend index for this module contains summaries from itself and ; Inputs/distributed_indexes.ll, as it imports from the latter. ; BACKEND1: <MODULE_STRTAB_BLOCK -; BACKEND1-NEXT: <ENTRY {{.*}} record string = '{{.*}}/distributed_indexes.ll.tmp{{.*}}.bc' -; BACKEND1-NEXT: <ENTRY {{.*}} record string = '{{.*}}/distributed_indexes.ll.tmp{{.*}}.bc' +; BACKEND1-NEXT: <ENTRY {{.*}} record string = '{{.*}}distributed_indexes.ll.tmp{{.*}}.bc' +; BACKEND1-NEXT: <ENTRY {{.*}} record string = '{{.*}}distributed_indexes.ll.tmp{{.*}}.bc' ; BACKEND1-NEXT: </MODULE_STRTAB_BLOCK ; BACKEND1-NEXT: <GLOBALVAL_SUMMARY_BLOCK ; BACKEND1-NEXT: <VERSION @@ -26,7 +26,7 @@ ; The backend index for Input/distributed_indexes.ll contains summaries from ; itself only, as it does not import anything. ; BACKEND2: <MODULE_STRTAB_BLOCK -; BACKEND2-NEXT: <ENTRY {{.*}} record string = '{{.*}}/distributed_indexes.ll.tmp2.bc' +; BACKEND2-NEXT: <ENTRY {{.*}} record string = '{{.*}}distributed_indexes.ll.tmp2.bc' ; BACKEND2-NEXT: </MODULE_STRTAB_BLOCK ; BACKEND2-NEXT: <GLOBALVAL_SUMMARY_BLOCK ; BACKEND2-NEXT: <VERSION |