diff options
author | Steven Knight <knight@baldmt.com> | 2004-07-13 08:06:06 (GMT) |
---|---|---|
committer | Steven Knight <knight@baldmt.com> | 2004-07-13 08:06:06 (GMT) |
commit | 9378d5faa513dad65da961b279c92722d593be28 (patch) | |
tree | 00389ded72bf2cd3148311e7fddf8466bc535bcd /test/QTFLAGS.py | |
parent | 23e59d43cd1884674d80e33df75812aa5133f4e3 (diff) | |
download | SCons-9378d5faa513dad65da961b279c92722d593be28.zip SCons-9378d5faa513dad65da961b279c92722d593be28.tar.gz SCons-9378d5faa513dad65da961b279c92722d593be28.tar.bz2 |
Fix tests on systems where 'ar' prints warnings about creating archives. (Kevin Quick)
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 867dbfb..3563d37 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() +test = TestSCons.TestSCons(match=TestSCons.match_re_dotall) test.subdir( 'qt', ['qt', 'bin'], ['qt', 'include'], ['qt', 'lib'] ) @@ -116,7 +116,8 @@ env = Environment() env.StaticLibrary( 'myqt', 'my_qobject.cpp' ) """) -test.run(chdir=test.workpath('qt','lib'), arguments = '.') +test.run(chdir=test.workpath('qt','lib'), arguments = '.', + stderr=TestSCons.noisy_ar) QT = test.workpath('qt') QT_LIB = 'myqt' |