[Git][ghc/ghc][wip/junit-fixes] Fix
Ben Gamari
gitlab at gitlab.haskell.org
Sun Jun 23 01:28:49 UTC 2019
Ben Gamari pushed to branch wip/junit-fixes at Glasgow Haskell Compiler / GHC
Commits:
1edd52f8 by Ben Gamari at 2019-06-23T01:28:43Z
Fix
- - - - -
1 changed file:
- testsuite/driver/runtests.py
Changes:
=====================================
testsuite/driver/runtests.py
=====================================
@@ -354,7 +354,8 @@ for name in config.only:
if config.list_broken:
print('')
print('Broken tests:')
- print('\n '.join(map (lambda bdn: '#' + str(bdn[0]) + '(' + bdn[1] + '/' + bdn[2] + ')', brokens)))
+ print('\n '.join('#{ticket}({a}/{b})'.format(ticket=ticket, a=a, b=b)
+ for ticket, a, b in brokens))
print('')
if t.framework_failures:
View it on GitLab: https://gitlab.haskell.org/ghc/ghc/commit/1edd52f826e435f7b8fc429785745cf3b0d06167
--
View it on GitLab: https://gitlab.haskell.org/ghc/ghc/commit/1edd52f826e435f7b8fc429785745cf3b0d06167
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/20190622/6799e4d7/attachment-0001.html>
More information about the ghc-commits
mailing list