diff options
Diffstat (limited to 'testsuite/driver/testglobals.py')
-rw-r--r-- | testsuite/driver/testglobals.py | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/testsuite/driver/testglobals.py b/testsuite/driver/testglobals.py index 17aa6d36b8..d08141f251 100644 --- a/testsuite/driver/testglobals.py +++ b/testsuite/driver/testglobals.py @@ -274,6 +274,12 @@ class TestOptions: self.compile_timeout_multiplier = 1.0 self.run_timeout_multiplier = 1.0 + self.cleanup = True + + # Sould we run tests in a local subdirectory (<testname>-run) or + # in temporary directory in /tmp? See Note [Running tests in /tmp]. + self.local = True + # The default set of options global default_testopts default_testopts = TestOptions() |