diff options
author | Ben Gamari <ben@smart-cactus.org> | 2019-08-02 15:36:06 -0400 |
---|---|---|
committer | Ben Gamari <ben@smart-cactus.org> | 2019-08-02 15:39:54 -0400 |
commit | 123c9981a79b35387efde5f445c8f56e27a2dcfb (patch) | |
tree | 5052974f7e7ea040068070579d4e36f30c1f1f14 /testsuite/driver/testglobals.py | |
parent | 5e04841c4641e2249066614065053166657e3eb4 (diff) | |
download | haskell-wip/rework-fragile-tests.tar.gz |
testsuite: Rework tracking of fragile testswip/rework-fragile-tests
Breaks fragile tests into two groups, allowing us to easily preserve
stdout/stderr of failing fragile tests.
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 b7d668ec66..9895cd3a61 100644 --- a/testsuite/driver/testglobals.py +++ b/testsuite/driver/testglobals.py @@ -236,7 +236,8 @@ class TestRun: self.unexpected_stat_failures = [] # type: List[TestResult] # Results from tests that have been marked as fragile - self.fragile_results = [] # type: List[TestResult] + self.fragile_passes = [] # type: List[TestResult] + self.fragile_failures = [] # type: List[TestResult] # List of all metrics measured in this test run. # [(change, PerfStat)] where change is one of the MetricChange |