tests.py (11503:e9b095599766) tests.py (11511:3c383d9a7c31)
1#!/usr/bin/env python
2#
3# Copyright (c) 2016 ARM Limited
4# All rights reserved
5#
6# The license below extends only to copyright in the software and shall
7# not be construed as granting a license to any other intellectual
8# property including but not limited to intellectual property relating

--- 312 unchanged lines hidden (view full) ---

321 if ruby_protocol == "GPU_RfO":
322 configs += ['gpu-randomtest']
323 else:
324 configs += generic_configs
325
326 if ruby_protocol == 'MI_example':
327 configs += [ "%s-ruby" % (c, ) for c in configs ]
328 elif ruby_protocol is not None:
1#!/usr/bin/env python
2#
3# Copyright (c) 2016 ARM Limited
4# All rights reserved
5#
6# The license below extends only to copyright in the software and shall
7# not be construed as granting a license to any other intellectual
8# property including but not limited to intellectual property relating

--- 312 unchanged lines hidden (view full) ---

321 if ruby_protocol == "GPU_RfO":
322 configs += ['gpu-randomtest']
323 else:
324 configs += generic_configs
325
326 if ruby_protocol == 'MI_example':
327 configs += [ "%s-ruby" % (c, ) for c in configs ]
328 elif ruby_protocol is not None:
329 configs += [ "%s-ruby-%s" % (c, ruby_protocol) for c in configs ]
329 # Override generic ISA configs when using Ruby (excluding
330 # MI_example which is included in all ISAs by default). This
331 # reduces the number of generic tests we re-run for when
332 # compiling Ruby targets.
333 configs = [ "%s-ruby-%s" % (c, ruby_protocol) for c in configs ]
330
331 # /(quick|long)/(fs|se)/workload/ref/arch/guest/config/
332 for conf_script in configs:
333 for cat in categories:
334 for mode in modes:
335 mode_dir = os.path.join(_test_base, cat, mode)
336 if not os.path.exists(mode_dir):
337 continue

--- 14 unchanged lines hidden ---
334
335 # /(quick|long)/(fs|se)/workload/ref/arch/guest/config/
336 for conf_script in configs:
337 for cat in categories:
338 for mode in modes:
339 mode_dir = os.path.join(_test_base, cat, mode)
340 if not os.path.exists(mode_dir):
341 continue

--- 14 unchanged lines hidden ---