[llvm] r327047 - Fix test failure introduced in r327041

Vlad Tsyrklevich via llvm-commits llvm-commits at lists.llvm.org
Thu Mar 8 11:20:08 PST 2018


Author: vlad.tsyrklevich
Date: Thu Mar  8 11:20:08 2018
New Revision: 327047

URL: http://llvm.org/viewvc/llvm-project?rev=327047&view=rev
Log:
Fix test failure introduced in r327041

The "Assertion: `...' failed" error message format is not identical
across platforms.

Modified:
    llvm/trunk/test/Transforms/FunctionImport/not-prevailing.ll

Modified: llvm/trunk/test/Transforms/FunctionImport/not-prevailing.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/Transforms/FunctionImport/not-prevailing.ll?rev=327047&r1=327046&r2=327047&view=diff
==============================================================================
--- llvm/trunk/test/Transforms/FunctionImport/not-prevailing.ll (original)
+++ llvm/trunk/test/Transforms/FunctionImport/not-prevailing.ll Thu Mar  8 11:20:08 2018
@@ -3,7 +3,7 @@
 ; RUN: not --crash llvm-lto2 run -o %t3.bc %t1.bc %t2.bc -r %t1.bc,bar,px \
 ; RUN:     -r %t1.bc,foo,x -r %t2.bc,foo,x -save-temps 2>&1 | FileCheck %s
 
-; CHECK: Assertion {{.*}} "Symbol with interposable and available_externally linkages"' failed
+; CHECK: "Symbol with interposable and available_externally linkages"
 
 target datalayout = "e-m:e-i64:64-f80:128-n8:16:32:64-S128"
 target triple = "x86_64-unknown-linux-gnu"




More information about the llvm-commits mailing list