diff options
author | William Deegan <bill@baddogconsulting.com> | 2020-03-22 02:22:33 (GMT) |
---|---|---|
committer | William Deegan <bill@baddogconsulting.com> | 2020-04-09 20:51:24 (GMT) |
commit | 4ace04ea384de1e76126c4a6dfae8c8fbe2b3db8 (patch) | |
tree | 48ee886afdcc6cf707e352bebf79094be1446353 /testing | |
parent | 349d79172a60b2840a17c03456be93560ec974e0 (diff) | |
download | SCons-4ace04ea384de1e76126c4a6dfae8c8fbe2b3db8.zip SCons-4ace04ea384de1e76126c4a6dfae8c8fbe2b3db8.tar.gz SCons-4ace04ea384de1e76126c4a6dfae8c8fbe2b3db8.tar.bz2 |
Fix scons-time tests. Remove subversion test
Diffstat (limited to 'testing')
-rw-r--r-- | testing/framework/TestSCons_time.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/testing/framework/TestSCons_time.py b/testing/framework/TestSCons_time.py index 6f46e26..c6373eb 100644 --- a/testing/framework/TestSCons_time.py +++ b/testing/framework/TestSCons_time.py @@ -60,7 +60,7 @@ import os import sys dir = sys.argv[-1] -script_dir = dir + '/src/script' +script_dir = dir + '/scripts' os.makedirs(script_dir) with open(script_dir + '/scons.py', 'w') as f: f.write(r'''%s''') @@ -73,7 +73,7 @@ import os import sys dir = sys.argv[-1] -script_dir = dir + '/src/script' +script_dir = dir + '/scripts' os.makedirs(script_dir) with open(script_dir + '/scons.py', 'w') as f: f.write(r'''%s''') @@ -230,8 +230,8 @@ class TestSCons_time(TestCommon): return x def write_fake_scons_py(self): - self.subdir('src', ['src', 'script']) - self.write('src/script/scons.py', scons_py) + self.subdir('scripts') + self.write('scripts/scons.py', scons_py) def write_fake_svn_py(self, name): name = self.workpath(name) |