1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-19 11:02:59 +02:00

[utils/lit] Show available_features with --show-suites.

llvm-svn: 272022
This commit is contained in:
Daniel Dunbar 2016-06-07 16:22:24 +00:00
parent 45d8260ac8
commit 19353b2150

View File

@ -336,6 +336,9 @@ def main(builtinParameters = {}):
print(' %s - %d tests' %(ts.name, len(ts_tests)))
print(' Source Root: %s' % ts.source_root)
print(' Exec Root : %s' % ts.exec_root)
if ts.config.available_features:
print(' Available Features : %s' % ' '.join(
sorted(ts.config.available_features)))
# Show the tests, if requested.
if opts.showTests: