diff options
author | William Deegan <bill@baddogconsulting.com> | 2019-09-07 17:30:19 (GMT) |
---|---|---|
committer | William Deegan <bill@baddogconsulting.com> | 2019-09-07 17:30:19 (GMT) |
commit | 36a50102f1e70bfbeb1338b7036d810ac1ee63c3 (patch) | |
tree | edc7de4932249d6326484a5a6d149bdc385e6c42 /testing | |
parent | e5e6c58fc189f81a59c7fedb6b1781f47329826c (diff) | |
download | SCons-36a50102f1e70bfbeb1338b7036d810ac1ee63c3.zip SCons-36a50102f1e70bfbeb1338b7036d810ac1ee63c3.tar.gz SCons-36a50102f1e70bfbeb1338b7036d810ac1ee63c3.tar.bz2 |
purge aegis references
Diffstat (limited to 'testing')
-rw-r--r-- | testing/framework/TestSCons_time.py | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/testing/framework/TestSCons_time.py b/testing/framework/TestSCons_time.py index 8363e8d..f27e0e3 100644 --- a/testing/framework/TestSCons_time.py +++ b/testing/framework/TestSCons_time.py @@ -55,19 +55,6 @@ with open('SConstruct', 'r') as f: exec(script) """ -aegis_py = """\ -#!/usr/bin/env python -import os -import sys - -script_dir = 'src/script' -if not os.path.exists(script_dir): - os.makedirs(script_dir) -with open(script_dir + '/scons.py', 'w') as f: - f.write(r'''%s''') -""" % scons_py - - svn_py = """\ #!/usr/bin/env python import os @@ -243,12 +230,6 @@ class TestSCons_time(TestCommon): x = x.replace('time\\-', 'time\\-[^%s]*' % sep) return x - def write_fake_aegis_py(self, name): - name = self.workpath(name) - self.write(name, aegis_py) - os.chmod(name, 0o755) - return name - def write_fake_scons_py(self): self.subdir('src', ['src', 'script']) self.write('src/script/scons.py', scons_py) |