larsi@gnus.org (Lars Ingebrigtsen) writes: > branch: master > commit 66db7b2c36c9189baf6f6b3d3fd7d04b3903cab4 > Author: Lars Ingebrigtsen > Commit: Lars Ingebrigtsen > > Always include the number of unexpected results here too Doesn't this break 'make check'? AFAICT ert-summarize-tests-batch-and-exit currently uses the presence of "N unexpected" as an indication of an error, even when N is zero: (if (not (re-search-forward "^\\(Aborted: \\)?\ Ran \\([0-9]+\\) tests, \\([0-9]+\\) results as expected\ \\(?:, \\([0-9]+\\) unexpected\\)?\ \\(?:, \\([0-9]+\\) skipped\\)?" nil t)) (push logfile badtests) ... (when (match-string 4) (push logfile unexpected) (setq nunexpected (+ nunexpected (string-to-number (match-string 4))))) ...) Should this be updated as follows?