diff options
Diffstat (limited to 'test/Library.py')
-rw-r--r-- | test/Library.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/Library.py b/test/Library.py index f22172c..2b0810f 100644 --- a/test/Library.py +++ b/test/Library.py @@ -26,7 +26,7 @@ __revision__ = "__FILE__ __REVISION__ __DATE__ __DEVELOPER__" import TestSCons -test = TestSCons.TestSCons() +test = TestSCons.TestSCons(match=TestSCons.match_re_dotall) test.write('SConstruct', """ env = Environment(LIBS = [ 'foo1', 'libfoo2' ], @@ -121,7 +121,7 @@ main(int argc, char *argv[]) } """) -test.run(arguments = '.') +test.run(arguments = '.', stderr=TestSCons.noisy_ar) test.run(program = test.workpath('prog'), stdout = "f1.c\nf2a.c\nf2b.c\nf2c.c\nf3a.c\nf3b.c\nf3c.cpp\nprog.c\n") @@ -150,7 +150,7 @@ int main() { } """) -test.run() +test.run(stderr=TestSCons.noisy_ar) test.run(program = test.workpath('uses-nrd'), stdout = "nrd\n") |