diff options
author | Steven Knight <knight@baldmt.com> | 2004-07-15 12:39:34 (GMT) |
---|---|---|
committer | Steven Knight <knight@baldmt.com> | 2004-07-15 12:39:34 (GMT) |
commit | 502bdb0f465217b1b34bfd53cbf32385e40bdce5 (patch) | |
tree | c2864cbd6341ba776c90abb8c2cbb1456906a0a5 /test/QTFLAGS.py | |
parent | 9378d5faa513dad65da961b279c92722d593be28 (diff) | |
download | SCons-502bdb0f465217b1b34bfd53cbf32385e40bdce5.zip SCons-502bdb0f465217b1b34bfd53cbf32385e40bdce5.tar.gz SCons-502bdb0f465217b1b34bfd53cbf32385e40bdce5.tar.bz2 |
Win32 portability: add an explicit match argument to TestCommon.py, use it to only use match_re_dotall when we're using TestSCons.noisy_ar.
Diffstat (limited to 'test/QTFLAGS.py')
-rw-r--r-- | test/QTFLAGS.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/test/QTFLAGS.py b/test/QTFLAGS.py index 3563d37..a503fad 100644 --- a/test/QTFLAGS.py +++ b/test/QTFLAGS.py @@ -34,7 +34,7 @@ import os.path python = TestSCons.python _exe = TestSCons._exe -test = TestSCons.TestSCons(match=TestSCons.match_re_dotall) +test = TestSCons.TestSCons() test.subdir( 'qt', ['qt', 'bin'], ['qt', 'include'], ['qt', 'lib'] ) @@ -117,7 +117,8 @@ env.StaticLibrary( 'myqt', 'my_qobject.cpp' ) """) test.run(chdir=test.workpath('qt','lib'), arguments = '.', - stderr=TestSCons.noisy_ar) + stderr=TestSCons.noisy_ar, + match=TestSCons.match_re_dotall) QT = test.workpath('qt') QT_LIB = 'myqt' |