SConscript (11542:ecd058e3dcbe) | SConscript (12246:9ffa51416f39) |
---|---|
1# -*- mode: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 --- 36 unchanged lines hidden (view full) --- 45from SCons.Script.SConscript import SConsEnvironment 46import os 47import pickle 48import sys 49 50sys.path.insert(0, Dir(".").srcnode().abspath) 51import testing.tests as tests 52import testing.results as results | 1# -*- mode: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 --- 36 unchanged lines hidden (view full) --- 45from SCons.Script.SConscript import SConsEnvironment 46import os 47import pickle 48import sys 49 50sys.path.insert(0, Dir(".").srcnode().abspath) 51import testing.tests as tests 52import testing.results as results |
53from gem5_scons.util import get_termcap |
|
53 54Import('env') 55 56# get the termcap from the environment | 54 55Import('env') 56 57# get the termcap from the environment |
57termcap = env['TERMCAP'] | 58termcap = get_termcap() |
58 59# Dict that accumulates lists of tests by category (quick, medium, long) 60env.Tests = {} 61gpu_isa = env['TARGET_GPU_ISA'] if env['BUILD_GPU'] else None 62for cat in tests.all_categories: 63 env.Tests[cat] = tuple( 64 tests.get_tests(env["TARGET_ISA"], 65 categories=(cat, ), --- 183 unchanged lines hidden --- | 59 60# Dict that accumulates lists of tests by category (quick, medium, long) 61env.Tests = {} 62gpu_isa = env['TARGET_GPU_ISA'] if env['BUILD_GPU'] else None 63for cat in tests.all_categories: 64 env.Tests[cat] = tuple( 65 tests.get_tests(env["TARGET_ISA"], 66 categories=(cat, ), --- 183 unchanged lines hidden --- |