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 | d4da437a7df193b540560e8bb06aa1573b615cc8 (patch) | |
tree | 00389ded72bf2cd3148311e7fddf8466bc535bcd /test/CPPPATH.py | |
parent | 6dfe1bb16b84e5ce1f845bf3d1c83c2b34f65129 (diff) | |
download | SCons-d4da437a7df193b540560e8bb06aa1573b615cc8.zip SCons-d4da437a7df193b540560e8bb06aa1573b615cc8.tar.gz SCons-d4da437a7df193b540560e8bb06aa1573b615cc8.tar.bz2 |
Fix tests on systems where 'ar' prints warnings about creating archives. (Kevin Quick)
Diffstat (limited to 'test/CPPPATH.py')
-rw-r--r-- | test/CPPPATH.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/CPPPATH.py b/test/CPPPATH.py index 1f93bf5..d3185c0 100644 --- a/test/CPPPATH.py +++ b/test/CPPPATH.py @@ -36,7 +36,7 @@ variant_prog = os.path.join('variant', 'prog' + _exe) args = prog + ' ' + subdir_prog + ' ' + variant_prog -test = TestSCons.TestSCons() +test = TestSCons.TestSCons(match=TestSCons.match_re_dotall) test.subdir('include', 'subdir', ['subdir', 'include'], 'inc2') @@ -203,6 +203,6 @@ env.Library('foo', source = 'empty.c') test.write('empty.c', """ """) -test.run(arguments = '.') +test.run(arguments = '.', stderr=TestSCons.noisy_ar) test.pass_test() |