diff options
Diffstat (limited to 'testsuite/driver/testglobals.py')
-rw-r--r-- | testsuite/driver/testglobals.py | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/testsuite/driver/testglobals.py b/testsuite/driver/testglobals.py index 643dad60bc..4b6acfd9bf 100644 --- a/testsuite/driver/testglobals.py +++ b/testsuite/driver/testglobals.py @@ -29,7 +29,16 @@ class TestConfig: self.accept = 0 # File in which to save the summary - self.output_summary = '' + self.summary_file = '' + + # Should we print the summary? + # Disabling this is useful for Phabricator/Harbormaster + # logfiles, which are truncated to 30 lines. TODO. Revise if + # this is still true. + # Note that we have a separate flag for this, instead of + # overloading --verbose, as you might want to see the summary + # with --verbose=0. + self.no_print_summary = False # File in which to save the times self.times_file = '' |