diff options
author | Gabe Black <gabeblack@google.com> | 2017-11-08 19:59:04 -0800 |
---|---|---|
committer | Gabe Black <gabeblack@google.com> | 2017-11-10 13:17:29 +0000 |
commit | 49cf9fded08741099d25848807442a89c4d21399 (patch) | |
tree | ddd41029abc62776d470ea83099c8741236754df /tests | |
parent | 91d942a9da18b77b8a0652bc5f07f2e129b8504e (diff) | |
download | gem5-49cf9fded08741099d25848807442a89c4d21399.tar.xz |
scons: Move Transform and termcap functionality into their own files.
Change-Id: Ica08e93f3873a7eafd02fe7d44c3bdbf0ce7f6b7
Reviewed-on: https://gem5-review.googlesource.com/5565
Reviewed-by: Gabe Black <gabeblack@google.com>
Maintainer: Gabe Black <gabeblack@google.com>
Diffstat (limited to 'tests')
-rw-r--r-- | tests/SConscript | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/SConscript b/tests/SConscript index d1fee7ad1..3ed3e248b 100644 --- a/tests/SConscript +++ b/tests/SConscript @@ -50,11 +50,12 @@ import sys sys.path.insert(0, Dir(".").srcnode().abspath) import testing.tests as tests import testing.results as results +from gem5_scons.util import get_termcap Import('env') # get the termcap from the environment -termcap = env['TERMCAP'] +termcap = get_termcap() # Dict that accumulates lists of tests by category (quick, medium, long) env.Tests = {} |