diff options
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() |