summaryrefslogtreecommitdiffstats
path: root/test/option-s.py
diff options
context:
space:
mode:
authoredA-qa mort-ora-y <edA-qa@disemia.com>2012-05-05 13:49:07 (GMT)
committeredA-qa mort-ora-y <edA-qa@disemia.com>2012-05-05 13:49:07 (GMT)
commit70ca48f0389de490a0f6582aa161b30986af3532 (patch)
tree7a9afa2ebc3f822f6ef966c1d0891607e61f7ca0 /test/option-s.py
parentb1aa01e14e21176f0dd33919fae528e26280dec4 (diff)
downloadSCons-70ca48f0389de490a0f6582aa161b30986af3532.zip
SCons-70ca48f0389de490a0f6582aa161b30986af3532.tar.gz
SCons-70ca48f0389de490a0f6582aa161b30986af3532.tar.bz2
fix for issue 2976
Diffstat (limited to 'test/option-s.py')
-rw-r--r--test/option-s.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/test/option-s.py b/test/option-s.py
index 6950fc9..1c8a233 100644
--- a/test/option-s.py
+++ b/test/option-s.py
@@ -67,6 +67,11 @@ test.run(arguments = '--quiet f1.out f2.out', stdout = "")
test.fail_test(not os.path.exists(test.workpath('f1.out')))
test.fail_test(not os.path.exists(test.workpath('f2.out')))
+# -C should also be quiety Issue#2796
+test.subdir( 'sub' )
+test.write(['sub','SConstruct'],"")
+test.run(arguments = '-s -C sub', stdout = "" )
+
test.pass_test()