summaryrefslogtreecommitdiffstats
path: root/test/ARFLAGS.py
diff options
context:
space:
mode:
authorSteven Knight <knight@baldmt.com>2004-07-13 08:06:06 (GMT)
committerSteven Knight <knight@baldmt.com>2004-07-13 08:06:06 (GMT)
commit9378d5faa513dad65da961b279c92722d593be28 (patch)
tree00389ded72bf2cd3148311e7fddf8466bc535bcd /test/ARFLAGS.py
parent23e59d43cd1884674d80e33df75812aa5133f4e3 (diff)
downloadSCons-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/ARFLAGS.py')
-rw-r--r--test/ARFLAGS.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/ARFLAGS.py b/test/ARFLAGS.py
index a9dc572..15ce994 100644
--- a/test/ARFLAGS.py
+++ b/test/ARFLAGS.py
@@ -32,7 +32,7 @@ import TestSCons
python = TestSCons.python
_exe = TestSCons._exe
-test = TestSCons.TestSCons()
+test = TestSCons.TestSCons(match=TestSCons.match_re_dotall)
test.write("wrapper.py",
"""import os
@@ -82,11 +82,11 @@ main(int argc, char *argv[])
""")
-test.run(arguments = 'f' + _exe)
+test.run(arguments = 'f' + _exe, stderr=TestSCons.noisy_ar)
test.fail_test(os.path.exists(test.workpath('wrapper.out')))
-test.run(arguments = 'b' + _exe)
+test.run(arguments = 'b' + _exe, stderr=TestSCons.noisy_ar)
test.fail_test(test.read('wrapper.out') != "wrapper.py\n")