diff options
author | Teresa Johnson <tejohnson@google.com> | 2015-12-07 20:26:57 +0000 |
---|---|---|
committer | Teresa Johnson <tejohnson@google.com> | 2015-12-07 20:26:57 +0000 |
commit | f5ae87d70dc010bbb7b9ccdc17941d0386fe4618 (patch) | |
tree | 7fd03da63add5a6cee1283717c73b194c693d112 | |
parent | a8bf5099d60c00cbe038200a77f3cee1c56ffa78 (diff) | |
download | bcm5719-llvm-f5ae87d70dc010bbb7b9ccdc17941d0386fe4618.tar.gz bcm5719-llvm-f5ae87d70dc010bbb7b9ccdc17941d0386fe4618.zip |
Adjust test to fix bot error from r254927.
Remove the part of the error message that may vary across systems.
llvm-svn: 254938
-rw-r--r-- | clang/test/CodeGen/thinlto_backend.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/test/CodeGen/thinlto_backend.c b/clang/test/CodeGen/thinlto_backend.c index 6a74deab8f1..2a618940822 100644 --- a/clang/test/CodeGen/thinlto_backend.c +++ b/clang/test/CodeGen/thinlto_backend.c @@ -7,7 +7,7 @@ // Ensure we get expected error for missing index file // RUN: %clang -target x86_64-unknown-linux -O2 -o %t1.o -x ir %t.o -c -fthinlto-index=bad.thinlto.bc 2>&1 | FileCheck %s -check-prefix=CHECK-ERROR -// CHECK-ERROR: Error loading index file 'bad.thinlto.bc': No such file or directory +// CHECK-ERROR: Error loading index file 'bad.thinlto.bc' // Ensure Function Importing pass added // RUN: %clang -target x86_64-unknown-linux -O2 -o %t1.o -x ir %t.o -c -fthinlto-index=%t.thinlto.bc -mllvm -debug-pass=Structure 2>&1 | FileCheck %s -check-prefix=CHECK-PASS |