summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
Diffstat (limited to 'tests')
-rw-r--r--tests/SConscript3
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 = {}