summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthew Pickering <matthewtpickering@gmail.com>2022-02-16 13:38:55 +0000
committerAndreas Klebinger <klebinger.andreas@gmx.at>2022-02-21 13:45:09 +0000
commit3ee8fde7290b9cc967d0d614f402dc6415c9559a (patch)
treebd581eb765db656f4127c081f57203e22a39decc
parent6b468f7f6185e68ccdea547beb090092b77cf87e (diff)
downloadhaskell-wip/no-fragile.tar.gz
testsuite: Don't print names of all fragile tests on all runswip/no-fragile
This information about fragile tests is pretty useless but annoying on CI where you have to scroll up a long way to see the actual issues.
-rw-r--r--testsuite/driver/testlib.py8
1 files changed, 0 insertions, 8 deletions
diff --git a/testsuite/driver/testlib.py b/testsuite/driver/testlib.py
index 8e286d32f8..36221706de 100644
--- a/testsuite/driver/testlib.py
+++ b/testsuite/driver/testlib.py
@@ -2770,14 +2770,6 @@ def summary(t: TestRun, file: TextIO, short=False, color=False) -> None:
file.write('Framework warnings:\n')
printTestInfosSummary(file, t.framework_warnings)
- if t.fragile_passes:
- file.write('Fragile test passes:\n')
- printTestInfosSummary(file, t.fragile_passes)
-
- if t.fragile_failures:
- file.write('Fragile test failures:\n')
- printTestInfosSummary(file, t.fragile_failures)
-
if stopping():
file.write('WARNING: Testsuite run was terminated early\n')