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.


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@169604 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
David Tweed 2012-12-07 15:57:45 +00:00
parent 645016533d
commit 9f90c73415
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