summaryrefslogtreecommitdiffstats
path: root/test/HeaderInstall.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/HeaderInstall.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/HeaderInstall.py')
-rw-r--r--test/HeaderInstall.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/HeaderInstall.py b/test/HeaderInstall.py
index cccf4d6..ae4213f 100644
--- a/test/HeaderInstall.py
+++ b/test/HeaderInstall.py
@@ -31,7 +31,7 @@ import os.path
import TestSCons
-test = TestSCons.TestSCons()
+test = TestSCons.TestSCons(match=TestSCons.match_re_dotall)
test.subdir('work1', ['work1', 'dist'])
@@ -64,7 +64,7 @@ test.write(['work1', 'dist', 'h3.h'], """\
int foo = 3;
""")
-test.run(chdir = 'work1', arguments = ".")
+test.run(chdir = 'work1', arguments = ".", stderr=TestSCons.noisy_ar)
test.up_to_date(chdir = 'work1', arguments = ".")