[Git][ghc/ghc][master] testsuite: Don't count fragile passes as failures in JUnit output

Marge Bot (@marge-bot) gitlab at gitlab.haskell.org
Tue Mar 11 10:11:02 UTC 2025



Marge Bot pushed to branch master at Glasgow Haskell Compiler / GHC


Commits:
1951eb7a by Ben Gamari at 2025-03-11T06:10:35-04:00
testsuite: Don't count fragile passes as failures in JUnit output

As noted in #25806, the testsuite driver's JUnit output
previously considered passes of fragile tests to be failures. Fix this.

Closes #25806.
- - - - -


1 changed file:

- testsuite/driver/junit.py


Changes:

=====================================
testsuite/driver/junit.py
=====================================
@@ -19,8 +19,7 @@ def junit(t: TestRun) -> ET.ElementTree:
     for res_type, group in [('stat failure', t.unexpected_stat_failures),
                             ('unexpected failure', t.unexpected_failures),
                             ('unexpected pass', t.unexpected_passes),
-                            ('fragile failure', t.fragile_failures),
-                            ('fragile pass', t.fragile_passes)]:
+                            ('fragile failure', t.fragile_failures)]:
         for tr in group:
             testcase = ET.SubElement(testsuite, 'testcase',
                                      classname = tr.way,



View it on GitLab: https://gitlab.haskell.org/ghc/ghc/-/commit/1951eb7a68420450cf17182c343e0132474483af

-- 
View it on GitLab: https://gitlab.haskell.org/ghc/ghc/-/commit/1951eb7a68420450cf17182c343e0132474483af
You're receiving this email because of your account on gitlab.haskell.org.


-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://mail.haskell.org/pipermail/ghc-commits/attachments/20250311/b0c43e88/attachment-0001.html>


More information about the ghc-commits mailing list