summaryrefslogtreecommitdiff
path: root/test/scons-time
diff options
context:
space:
mode:
authorSteven Knight <knight@baldmt.com>2010-01-06 01:56:48 +0000
committerSteven Knight <knight@baldmt.com>2010-01-06 01:56:48 +0000
commitee2f81e464ac21f6639bd874d6410c995872c45b (patch)
treee6c7aa211f4fbca7b735728e43afff1a95773d1c /test/scons-time
parentd977e466fafc91dcbc7ed3ad13d5a8386dda5b84 (diff)
downloadscons-ee2f81e464ac21f6639bd874d6410c995872c45b.tar.gz
Fix some tests so they can still run on Windows system without
.py file associations.
Diffstat (limited to 'test/scons-time')
-rw-r--r--test/scons-time/run/subversion.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/test/scons-time/run/subversion.py b/test/scons-time/run/subversion.py
index e3152fcc..f8957600 100644
--- a/test/scons-time/run/subversion.py
+++ b/test/scons-time/run/subversion.py
@@ -38,10 +38,11 @@ test = TestSCons_time.TestSCons_time()
test.write_sample_project('foo.tar')
+_python_ = TestSCons_time._python_
my_svn_py = test.write_fake_svn_py('my_svn.py')
test.write('config', """\
-svn = r'%(my_svn_py)s'
+svn = r'%(_python_)s %(my_svn_py)s'
""" % locals())
test.run(arguments = 'run -f config --svn http://xyzzy --number 617,716 foo.tar')