[llvm] r188567 - [tests] Another attempt to workaround broken misched-copy.s test on some buildbots.

Daniel Dunbar daniel at zuster.org
Fri Aug 16 11:01:18 PDT 2013


Author: ddunbar
Date: Fri Aug 16 13:01:18 2013
New Revision: 188567

URL: http://llvm.org/viewvc/llvm-project?rev=188567&view=rev
Log:
[tests] Another attempt to workaround broken misched-copy.s test on some buildbots.

Modified:
    llvm/trunk/test/CodeGen/X86/lit.local.cfg
    llvm/trunk/test/CodeGen/X86/misched-copy.ll

Modified: llvm/trunk/test/CodeGen/X86/lit.local.cfg
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/CodeGen/X86/lit.local.cfg?rev=188567&r1=188566&r2=188567&view=diff
==============================================================================
--- llvm/trunk/test/CodeGen/X86/lit.local.cfg (original)
+++ llvm/trunk/test/CodeGen/X86/lit.local.cfg Fri Aug 16 13:01:18 2013
@@ -1,3 +1,11 @@
+# FIXME: For now, override suffixes to exclude any .s tests, because some of the
+# buildbots have a stray misched-copy.s output file lying around that causes
+# failures. See misched-copy.s where we try and clean up that file.
+#
+# It should be possible to remove this override once all the bots have cycled
+# cleanly.
+config.suffixes = ['.ll', '.c', '.cpp', '.test', '.txt']
+
 targets = set(config.root.targets_to_build.split())
 if not 'X86' in targets:
     config.unsupported = True

Modified: llvm/trunk/test/CodeGen/X86/misched-copy.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/CodeGen/X86/misched-copy.ll?rev=188567&r1=188566&r2=188567&view=diff
==============================================================================
--- llvm/trunk/test/CodeGen/X86/misched-copy.ll (original)
+++ llvm/trunk/test/CodeGen/X86/misched-copy.ll Fri Aug 16 13:01:18 2013
@@ -4,7 +4,7 @@
 ; been left dangling around by this test. It can be removed once the various
 ; bots have cycled past this commit.
 ;
-; RUN: rm -f misched-copy.s
+; RUN: rm -f misched-copy.s %S/misched-copy.s
 ;
 ;
 ; RUN: llc < %s -march=x86 -mcpu=core2 -pre-RA-sched=source -enable-misched -verify-misched -debug-only=misched -o - 2>&1 > /dev/null | FileCheck %s





More information about the llvm-commits mailing list