diff options
author | Steven Knight <knight@baldmt.com> | 2010-01-26 16:26:26 (GMT) |
---|---|---|
committer | Steven Knight <knight@baldmt.com> | 2010-01-26 16:26:26 (GMT) |
commit | f5a80d8cf4143edd7434805a568cc0e7eeaf81c0 (patch) | |
tree | 3608231e6b538a5222c7d501cbd9ce8d8ef08c76 /test/runtest/baseline/fail.py | |
parent | b21c0b3f84d0b064e9d2dd548e0b6d246a537afb (diff) | |
download | SCons-f5a80d8cf4143edd7434805a568cc0e7eeaf81c0.zip SCons-f5a80d8cf4143edd7434805a568cc0e7eeaf81c0.tar.gz SCons-f5a80d8cf4143edd7434805a568cc0e7eeaf81c0.tar.bz2 |
Win32 portability in runtest.py tests after disabling QMTest by default.
Diffstat (limited to 'test/runtest/baseline/fail.py')
-rw-r--r-- | test/runtest/baseline/fail.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/runtest/baseline/fail.py b/test/runtest/baseline/fail.py index fb7265e..baa974a 100644 --- a/test/runtest/baseline/fail.py +++ b/test/runtest/baseline/fail.py @@ -30,7 +30,7 @@ Test how we handle a failing test specified on the command line. import TestRuntest -python = TestRuntest.python +pythonstring = TestRuntest.pythonstring test = TestRuntest.TestRuntest() @@ -39,7 +39,7 @@ test.subdir('test') test.write_failing_test(['test', 'fail.py']) expect_stdout = """\ -%(python)s -tt test/fail.py +%(pythonstring)s -tt test/fail.py FAILING TEST STDOUT """ % locals() |