diff options
author | Thomas Miedema <thomasmiedema@gmail.com> | 2016-02-22 17:44:17 +0100 |
---|---|---|
committer | Thomas Miedema <thomasmiedema@gmail.com> | 2016-02-23 12:28:03 +0100 |
commit | 176be87cb28f675d87ea8f5c07eaef7ca47ff8de (patch) | |
tree | c8327c876974f71ae1cbe3ac5df2215a3ee12736 /testsuite/driver/testglobals.py | |
parent | 73e409555019d370f3644bdf02b37dd526de4d8a (diff) | |
download | haskell-176be87cb28f675d87ea8f5c07eaef7ca47ff8de.tar.gz |
Filter out -prof callstacks from test output (#11521)
Diffstat (limited to 'testsuite/driver/testglobals.py')
-rw-r--r-- | testsuite/driver/testglobals.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/testsuite/driver/testglobals.py b/testsuite/driver/testglobals.py index 0891624473..6f8dd647ca 100644 --- a/testsuite/driver/testglobals.py +++ b/testsuite/driver/testglobals.py @@ -265,6 +265,9 @@ class TestOptions: # Extra normalisation for compiler error messages self.extra_errmsg_normaliser = lambda x: x + # Keep profiling callstacks. + self.keep_prof_callstacks = False + # The directory the test is in self.testdir = '.' |