diff options
author | Ben Gamari <ben@smart-cactus.org> | 2021-03-18 23:29:09 -0400 |
---|---|---|
committer | Ben Gamari <ben@smart-cactus.org> | 2021-03-19 19:58:52 -0400 |
commit | 0a9866854384875e88406e495aba6594ac47799d (patch) | |
tree | cc24a867a077f9b8c042ff4ec9bda3e84ae3f044 /testsuite/driver/testglobals.py | |
parent | 302854154626ef10363afdda3ff1db7160e0827f (diff) | |
download | haskell-0a9866854384875e88406e495aba6594ac47799d.tar.gz |
testsuite: Make --ignore-perf-tests more expressive
Allow skipping of only increases/decreases.
Diffstat (limited to 'testsuite/driver/testglobals.py')
-rw-r--r-- | testsuite/driver/testglobals.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/testsuite/driver/testglobals.py b/testsuite/driver/testglobals.py index 117df41eb6..c7140387af 100644 --- a/testsuite/driver/testglobals.py +++ b/testsuite/driver/testglobals.py @@ -32,7 +32,8 @@ class TestConfig: self.only = set() # Don't fail on out-of-tolerance stat failures - self.ignore_perf_failures = False + self.ignore_perf_increases = False + self.ignore_perf_decreases = False # Accept new output which differs from the sample? self.accept = False |