[llvm] r261922 - Use regex in testcase, do not fail windows bots
Hongbin Zheng via llvm-commits
llvm-commits at lists.llvm.org
Thu Feb 25 11:16:40 PST 2016
Author: ether
Date: Thu Feb 25 13:16:40 2016
New Revision: 261922
URL: http://llvm.org/viewvc/llvm-project?rev=261922&view=rev
Log:
Use regex in testcase, do not fail windows bots
Modified:
llvm/trunk/test/Analysis/DominanceFrontier/new_pm_test.ll
Modified: llvm/trunk/test/Analysis/DominanceFrontier/new_pm_test.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/Analysis/DominanceFrontier/new_pm_test.ll?rev=261922&r1=261921&r2=261922&view=diff
==============================================================================
--- llvm/trunk/test/Analysis/DominanceFrontier/new_pm_test.ll (original)
+++ llvm/trunk/test/Analysis/DominanceFrontier/new_pm_test.ll Thu Feb 25 13:16:40 2016
@@ -35,16 +35,16 @@ define void @a_linear_impl_fig_1() nounw
; CHECK: DominanceFrontier for function: a_linear_impl_fig_1
; CHECK-DAG: DomFrontier for BB %"0" is:
-; CHECK-DAG: DomFrontier for BB %"11" is: %"8" %"9"
+; CHECK-DAG: DomFrontier for BB %"11" is: %"{{[8|9]}}" %"{{[8|9]}}"
; CHECK-DAG: DomFrontier for BB %"1" is: %"1"
-; CHECK-DAG: DomFrontier for BB %"2" is: %"1" %"2"
-; CHECK-DAG: DomFrontier for BB %"3" is: %"1" %"2"
-; CHECK-DAG: DomFrontier for BB %"13" is: %"1" %"2"
-; CHECK-DAG: DomFrontier for BB %"4" is: %"1" %"4"
-; CHECK-DAG: DomFrontier for BB %"5" is: %"1" %"4"
-; CHECK-DAG: DomFrontier for BB %"8" is: %"1" %"8"
+; CHECK-DAG: DomFrontier for BB %"2" is: %"{{[1|2]}}" %"{{[1|2]}}"
+; CHECK-DAG: DomFrontier for BB %"3" is: %"{{[1|2]}}" %"{{[1|2]}}"
+; CHECK-DAG: DomFrontier for BB %"13" is: %"{{[1|2]}}" %"{{[1|2]}}"
+; CHECK-DAG: DomFrontier for BB %"4" is: %"{{[1|4]}}" %"{{[1|4]}}"
+; CHECK-DAG: DomFrontier for BB %"5" is: %"{{[1|4]}}" %"{{[1|4]}}"
+; CHECK-DAG: DomFrontier for BB %"8" is: %"{{[1|8]}}" %"{{[1|8]}}"
; CHECK-DAG: DomFrontier for BB %"6" is: %"4"
; CHECK-DAG: DomFrontier for BB %"7" is:
-; CHECK-DAG: DomFrontier for BB %"9" is: %"1" %"8" %"9"
-; CHECK-DAG: DomFrontier for BB %"10" is: %"1" %"8" %"9"
-; CHECK-DAG: DomFrontier for BB %"12" is: %"1" %"8" %"9"
+; CHECK-DAG: DomFrontier for BB %"9" is: %"{{[1|8|9]}}" %"{{[1|8|9]}}"
+; CHECK-DAG: DomFrontier for BB %"10" is: %"{{[1|8|9]}}" %"{{[1|8|9]}}"
+; CHECK-DAG: DomFrontier for BB %"12" is: %"{{[1|8|9]}}" %"{{[1|8|9]}}"
More information about the llvm-commits
mailing list