Deleted Added
sdiff udiff text old ( 11503:e9b095599766 ) new ( 11511:3c383d9a7c31 )
full compact
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 ]
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 ---