r254938 - Adjust test to fix bot error from r254927.

Teresa Johnson via cfe-commits cfe-commits at lists.llvm.org
Mon Dec 7 12:26:57 PST 2015


Author: tejohnson
Date: Mon Dec  7 14:26:57 2015
New Revision: 254938

URL: http://llvm.org/viewvc/llvm-project?rev=254938&view=rev
Log:
Adjust test to fix bot error from r254927.

Remove the part of the error message that may vary across systems.

Modified:
    cfe/trunk/test/CodeGen/thinlto_backend.c

Modified: cfe/trunk/test/CodeGen/thinlto_backend.c
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/test/CodeGen/thinlto_backend.c?rev=254938&r1=254937&r2=254938&view=diff
==============================================================================
--- cfe/trunk/test/CodeGen/thinlto_backend.c (original)
+++ cfe/trunk/test/CodeGen/thinlto_backend.c Mon Dec  7 14:26:57 2015
@@ -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




More information about the cfe-commits mailing list