diff options
author | Ben Gamari <ben@smart-cactus.org> | 2019-01-28 20:40:18 -0500 |
---|---|---|
committer | Ben Gamari <ben@smart-cactus.org> | 2019-01-28 20:40:39 -0500 |
commit | 55e938e3a11af87377ff3a0f06dcb13783e448e7 (patch) | |
tree | b0cd5d229009c86d2c4d4a95afd87aa536dbae5b | |
parent | b1e569a54085bf1093b4f858f8c7c739e3be769b (diff) | |
download | haskell-wip/junit-unexpected-passes.tar.gz |
testsuite: Report unexpected passes in junit outputwip/junit-unexpected-passes
-rw-r--r-- | testsuite/driver/junit.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/testsuite/driver/junit.py b/testsuite/driver/junit.py index f5daec1e47..104660effe 100644 --- a/testsuite/driver/junit.py +++ b/testsuite/driver/junit.py @@ -12,7 +12,8 @@ def junit(t): timestamp = datetime.now().isoformat()) for res_type, group in [('stat failure', t.unexpected_stat_failures), - ('unexpected failure', t.unexpected_failures)]: + ('unexpected failure', t.unexpected_failures), + ('unexpected_passes', t.unexpected_passes)]: for (directory, testname, reason, way) in group: testcase = ET.SubElement(testsuite, 'testcase', classname = way, |