diff options
author | Gary Oberbrunner <garyo@oberbrunner.com> | 2012-05-12 19:55:18 (GMT) |
---|---|---|
committer | Gary Oberbrunner <garyo@oberbrunner.com> | 2012-05-12 19:55:18 (GMT) |
commit | f011342d8018a0cd8ef18de017d84a12cd157f6d (patch) | |
tree | 000d8d458870a4e43bb8f7a22e23c22c37b53733 /test | |
parent | eb778e1cbec002b502d3f2dc5043e2b039af29e7 (diff) | |
parent | 70ca48f0389de490a0f6582aa161b30986af3532 (diff) | |
download | SCons-f011342d8018a0cd8ef18de017d84a12cd157f6d.zip SCons-f011342d8018a0cd8ef18de017d84a12cd157f6d.tar.gz SCons-f011342d8018a0cd8ef18de017d84a12cd157f6d.tar.bz2 |
Merge fix for #2976, -s should be silent about entering subdirs.
Diffstat (limited to 'test')
-rw-r--r-- | test/option-s.py | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/test/option-s.py b/test/option-s.py index 6950fc9..f79c347 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 quiet Issue#2796 +test.subdir( 'sub' ) +test.write(['sub','SConstruct'],"") +test.run(arguments = '-s -C sub', stdout = "" ) + test.pass_test() |