[llvm] r308115 - Attempt to debug bot failures

Teresa Johnson via llvm-commits llvm-commits at lists.llvm.org
Sat Jul 15 16:31:32 PDT 2017


Author: tejohnson
Date: Sat Jul 15 16:31:32 2017
New Revision: 308115

URL: http://llvm.org/viewvc/llvm-project?rev=308115&view=rev
Log:
Attempt to debug bot failures

Simplifying checks from r308114, to see if I can narrow down why some
bots are still failing.

Modified:
    llvm/trunk/test/Transforms/FunctionImport/funcimport_resolved.ll

Modified: llvm/trunk/test/Transforms/FunctionImport/funcimport_resolved.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/Transforms/FunctionImport/funcimport_resolved.ll?rev=308115&r1=308114&r2=308115&view=diff
==============================================================================
--- llvm/trunk/test/Transforms/FunctionImport/funcimport_resolved.ll (original)
+++ llvm/trunk/test/Transforms/FunctionImport/funcimport_resolved.ll Sat Jul 15 16:31:32 2017
@@ -19,18 +19,18 @@
 ; First do a sanity check that all callees are imported with the default
 ; instruction limit
 ; RUN: llvm-lto2 run %t.bc %t2.bc %t3.bc -o %t4 -r=%t.bc,_main,pl -r=%t.bc,_linkonceodrfunc,l -r=%t.bc,_foo,l -r=%t2.bc,_foo,pl -r=%t2.bc,_linkonceodrfunc,pl -r=%t2.bc,_linkonceodrfunc2,pl -r=%t3.bc,_linkonceodrfunc,l -thinlto-threads=1 -debug-only=function-import 2>&1 | FileCheck %s --check-prefix=INSTLIMDEFAULT
-; INSTLIMDEFAULT-DAG: Is importing function {{.*}} foo from {{.*}}funcimport_resolved1.ll
-; INSTLIMDEFAULT-DAG: Is importing function {{.*}} linkonceodrfunc from {{.*}}funcimport_resolved1.ll
-; INSTLIMDEFAULT-DAG: Is importing function {{.*}} linkonceodrfunc2 from {{.*}}funcimport_resolved1.ll
-; INSTLIMDEFAULT-DAG: Is importing function {{.*}} f from {{.*}}funcimport_resolved1.ll
+; INSTLIMDEFAULT-DAG: Is importing function {{.*}}
+; INSTLIMDEFAULT-DAG: Is importing function {{.*}}
+; INSTLIMDEFAULT-DAG: Is importing function {{.*}}
+; INSTLIMDEFAULT-DAG: Is importing function {{.*}}
 
 ; Now run with the lower threshold that will only allow linkonceodrfunc to be
 ; imported from funcimport_resolved1.ll the second time it is encountered.
 ; RUN: llvm-lto2 run %t.bc %t2.bc %t3.bc -o %t4 -r=%t.bc,_main,pl -r=%t.bc,_linkonceodrfunc,l -r=%t.bc,_foo,l -r=%t2.bc,_foo,pl -r=%t2.bc,_linkonceodrfunc,pl -r=%t2.bc,_linkonceodrfunc2,pl -r=%t3.bc,_linkonceodrfunc,l -thinlto-threads=1 -debug-only=function-import -import-instr-limit=8 2>&1 | FileCheck %s --check-prefix=INSTLIM8
-; INSTLIM8-DAG: Is importing function {{.*}} foo from {{.*}}funcimport_resolved1.ll
-; INSTLIM8-DAG: Is importing function {{.*}} linkonceodrfunc from {{.*}}funcimport_resolved1.ll
-; INSTLIM8-DAG: Not importing function {{.*}} linkonceodrfunc2 from {{.*}}funcimport_resolved1.ll
-; INSTLIM8-DAG: Is importing function {{.*}} f from {{.*}}funcimport_resolved1.ll
+; INSTLIM8-DAG: Is importing function {{.*}}
+; INSTLIM8-DAG: Is importing function {{.*}}
+; INSTLIM8-DAG: Not importing function {{.*}}
+; INSTLIM8-DAG: Is importing function {{.*}}
 
 target datalayout = "e-m:o-i64:64-f80:128-n8:16:32:64-S128"
 target triple = "x86_64-apple-macosx10.11.0"




More information about the llvm-commits mailing list