blob: d9d464726135fbf9f548134e191451f3930051c7 (
plain)
1
2
3
4
5
6
7
8
9
|
config.suffixes = ['.py']
# These tests take on the order of seconds to run, so skip them unless
# we're running long tests.
if 'long_tests' not in config.available_features:
config.unsupported = True
if not 'SystemZ' in config.root.targets:
config.unsupported = True
|