summaryrefslogtreecommitdiffstats
path: root/testing
diff options
context:
space:
mode:
authorWilliam Deegan <bill@baddogconsulting.com>2020-03-22 02:22:33 (GMT)
committerWilliam Deegan <bill@baddogconsulting.com>2020-04-09 20:51:24 (GMT)
commit4ace04ea384de1e76126c4a6dfae8c8fbe2b3db8 (patch)
tree48ee886afdcc6cf707e352bebf79094be1446353 /testing
parent349d79172a60b2840a17c03456be93560ec974e0 (diff)
downloadSCons-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.py8
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)