summaryrefslogtreecommitdiffstats
path: root/test/option-s.py
diff options
context:
space:
mode:
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()