diff options
author | Steven Knight <knight@baldmt.com> | 2003-04-27 03:41:27 (GMT) |
---|---|---|
committer | Steven Knight <knight@baldmt.com> | 2003-04-27 03:41:27 (GMT) |
commit | 98792e70711bb39b7862e4427c09787aab691631 (patch) | |
tree | bb3d460515d4d671900fa6cb5582d429de503e40 /test/LIBS.py | |
parent | a925fbfbbecd978b6275ba0592e3bd21b0bd7781 (diff) | |
download | SCons-98792e70711bb39b7862e4427c09787aab691631.zip SCons-98792e70711bb39b7862e4427c09787aab691631.tar.gz SCons-98792e70711bb39b7862e4427c09787aab691631.tar.bz2 |
Follow-up test portability fixes for IRIX. (Chad Austin)
Diffstat (limited to 'test/LIBS.py')
-rw-r--r-- | test/LIBS.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/LIBS.py b/test/LIBS.py index 7a99f68..c9bcecd 100644 --- a/test/LIBS.py +++ b/test/LIBS.py @@ -123,7 +123,7 @@ SConscript('sub2/SConscript', 'env') test.run(arguments = '.', stderr=None) # on IRIX, ld32 prints out a warning saying that libbaz.a isn't used -sw = 'ld32: WARNING 84 : ./libbaz.a is not used for resolving any symbol.' +sw = 'ld32: WARNING 84 : ./libbaz.a is not used for resolving any symbol.\n' test.fail_test(not test.stderr() in ['', sw]) test.run(program=foo_exe, stdout='sub1/bar.c\nsub1/baz.c\n') |