diff options
| author | Daniel Dunbar <daniel@zuster.org> | 2013-08-16 18:01:18 +0000 |
|---|---|---|
| committer | Daniel Dunbar <daniel@zuster.org> | 2013-08-16 18:01:18 +0000 |
| commit | bc59c77dcf6437be33763ec09b99219a26f68c00 (patch) | |
| tree | 9527d5bd79c748c59eea6685df304c9a536ff321 | |
| parent | b16cf535dd57ec973e71d037c82b9e4e5af81e1f (diff) | |
| download | bcm5719-llvm-bc59c77dcf6437be33763ec09b99219a26f68c00.tar.gz bcm5719-llvm-bc59c77dcf6437be33763ec09b99219a26f68c00.zip | |
[tests] Another attempt to workaround broken misched-copy.s test on some buildbots.
llvm-svn: 188567
| -rw-r--r-- | llvm/test/CodeGen/X86/lit.local.cfg | 8 | ||||
| -rw-r--r-- | llvm/test/CodeGen/X86/misched-copy.ll | 2 |
2 files changed, 9 insertions, 1 deletions
diff --git a/llvm/test/CodeGen/X86/lit.local.cfg b/llvm/test/CodeGen/X86/lit.local.cfg index ba763cf03ff..1637fa46536 100644 --- a/llvm/test/CodeGen/X86/lit.local.cfg +++ b/llvm/test/CodeGen/X86/lit.local.cfg @@ -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 diff --git a/llvm/test/CodeGen/X86/misched-copy.ll b/llvm/test/CodeGen/X86/misched-copy.ll index 8268719a3f4..4a8734d6fc8 100644 --- a/llvm/test/CodeGen/X86/misched-copy.ll +++ b/llvm/test/CodeGen/X86/misched-copy.ll @@ -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 |

