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

llvm-svn: 188567
This commit is contained in:
Daniel Dunbar 2013-08-16 18:01:18 +00:00
parent b16cf535dd
commit bc59c77dcf
2 changed files with 9 additions and 1 deletions

View File

@ -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

View File

@ -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