diff options
author | William Deegan <bill@baddogconsulting.com> | 2020-03-22 19:44:08 (GMT) |
---|---|---|
committer | William Deegan <bill@baddogconsulting.com> | 2020-04-09 20:54:14 (GMT) |
commit | 269341a2cc10c1a789d21232ce94ad2b1fceab25 (patch) | |
tree | da96e1903407234a5f0a882908ea8cc64b56d26a /testing | |
parent | e9fa3ea7c3e57feded1d200b88650629cccae885 (diff) | |
download | SCons-269341a2cc10c1a789d21232ce94ad2b1fceab25.zip SCons-269341a2cc10c1a789d21232ce94ad2b1fceab25.tar.gz SCons-269341a2cc10c1a789d21232ce94ad2b1fceab25.tar.bz2 |
drop runntest.py's run from packages. define SCONS_TOOLS_DIR and use that for scons-time tests
Diffstat (limited to 'testing')
-rw-r--r-- | testing/framework/TestSCons_time.py | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/testing/framework/TestSCons_time.py b/testing/framework/TestSCons_time.py index c6373eb..0573404 100644 --- a/testing/framework/TestSCons_time.py +++ b/testing/framework/TestSCons_time.py @@ -158,7 +158,7 @@ class TestSCons_time(TestCommon): self.orig_cwd = os.getcwd() try: - script_dir = os.environ['SCONS_SCRIPT_DIR'] + script_dir = os.environ['SCONS_TOOLS_DIR'] except KeyError: pass else: @@ -173,8 +173,6 @@ class TestSCons_time(TestCommon): if 'interpreter' not in kw: kw['interpreter'] = [python,] - if sys.version_info[0] < 3: - kw['interpreter'].append('-tt') if 'match' not in kw: kw['match'] = match_exact |