diff options
author | Steven Knight <knight@baldmt.com> | 2002-07-12 06:00:46 (GMT) |
---|---|---|
committer | Steven Knight <knight@baldmt.com> | 2002-07-12 06:00:46 (GMT) |
commit | 25846c09acbebca4f41664a76dfc6175b3617e90 (patch) | |
tree | 1a58edf9e1eb2ecebdca49cb282c6b08030dae80 /test | |
parent | 792e057aef517bcf387f83d816b99f6b097f4c9a (diff) | |
download | SCons-25846c09acbebca4f41664a76dfc6175b3617e90.zip SCons-25846c09acbebca4f41664a76dfc6175b3617e90.tar.gz SCons-25846c09acbebca4f41664a76dfc6175b3617e90.tar.bz2 |
Fix scons -v on win32. (Anthony Roach)
Diffstat (limited to 'test')
-rw-r--r-- | test/option-v.py | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/test/option-v.py b/test/option-v.py index 4adcf5e..a0f7d93 100644 --- a/test/option-v.py +++ b/test/option-v.py @@ -33,7 +33,13 @@ test = TestSCons.TestSCons(match = TestCmd.match_re) test.write('SConstruct', "") -expect = r"""SCons by Steven Knight et al.: +if sys.platform == 'win32': + expect = r"""SCons by Steven Knight et al.: +\tengine: v\S+, [^,]*, by \S+ on \S+ +Copyright 2001, 2002 Steven Knight +""" +else: + expect = r"""SCons by Steven Knight et al.: \tscript: v\S+, [^,]*, by \S+ on \S+ \tengine: v\S+, [^,]*, by \S+ on \S+ Copyright 2001, 2002 Steven Knight |