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/LIBSUFFIXES.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/LIBSUFFIXES.py')
-rw-r--r-- | test/LIBSUFFIXES.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/LIBSUFFIXES.py b/test/LIBSUFFIXES.py index 19a092f..4e0073e 100644 --- a/test/LIBSUFFIXES.py +++ b/test/LIBSUFFIXES.py @@ -33,7 +33,7 @@ if sys.platform == 'win32': else: lib_ = 'lib' -test = TestSCons.TestSCons() +test = TestSCons.TestSCons(match=TestSCons.match_re_dotall) test.write('SConstruct', """ env = Environment(LIBSUFFIX = '.xxx', @@ -62,7 +62,7 @@ main(int argc, char *argv[]) } """) -test.run(arguments = '.') +test.run(arguments = '.', stderr=TestSCons.noisy_ar) test.fail_test(not os.path.exists(test.workpath(lib_ + 'foo.xxx'))) |