diff options
author | Mats Wichmann <mats@linux.com> | 2020-03-18 15:31:32 (GMT) |
---|---|---|
committer | Mats Wichmann <mats@linux.com> | 2020-03-18 15:31:32 (GMT) |
commit | 49b8cef15d3e44406d58919dd702cd1085c18050 (patch) | |
tree | df77f737ff09dcc5c4bef1efef41b781c21ae21c /test/Repository | |
parent | 7b0ec3e478423829e9ed23938d6aed178a140343 (diff) | |
download | SCons-49b8cef15d3e44406d58919dd702cd1085c18050.zip SCons-49b8cef15d3e44406d58919dd702cd1085c18050.tar.gz SCons-49b8cef15d3e44406d58919dd702cd1085c18050.tar.bz2 |
Remove verbose_set calls from tests
test.verbose_set() enables verbose mode, can be a useful
debugging aid. Shouldn't be left in in production tests,
as it creates noise in the test log.
Signed-off-by: Mats Wichmann <mats@linux.com>
Diffstat (limited to 'test/Repository')
-rw-r--r-- | test/Repository/Program.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/test/Repository/Program.py b/test/Repository/Program.py index 75860a7..1af3578 100644 --- a/test/Repository/Program.py +++ b/test/Repository/Program.py @@ -35,7 +35,6 @@ else: for implicit_deps in ['0', '1', '"all"']: # First, test a single repository. test = TestSCons.TestSCons() - test.verbose_set(1) test.subdir('repository', 'work1') repository = test.workpath('repository') repository_foo_c = test.workpath('repository', 'foo.c') |