1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-24 03:33:20 +01:00

The test unconditionally assumes a particular cpu has a backend build in the target.

Buildbots for some hosts may choose to build only their own backend in order to
maximise testing-turnaround time. Move the test into a prefixed directory so
lit's standard "backend specific" suppression can be done.

llvm-svn: 169604
This commit is contained in:
David Tweed 2012-12-07 15:57:45 +00:00
parent 4bcb7e5304
commit 74d6b6b73b
2 changed files with 6 additions and 0 deletions

View File

@ -0,0 +1,6 @@
config.suffixes = ['.ll', '.c', '.cpp']
targets = set(config.root.targets_to_build.split())
if not 'X86' in targets:
config.unsupported = True