This is an automated email from the ASF dual-hosted git repository.
jaikiran pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/ant.git
The following commit(s) were added to refs/heads/master by this push:
new fc2b223 bz-64836 junitlauncher - include the test aborted count in
the printed summary
fc2b223 is described below
commit fc2b223edb797b8fc151a4f82616a6cd882f9cea
Author: Jaikiran Pai <[email protected]>
AuthorDate: Sun Jan 24 09:30:08 2021 +0530
bz-64836 junitlauncher - include the test aborted count in the printed
summary
---
.../tools/ant/taskdefs/optional/junitlauncher/LauncherSupport.java | 2 ++
1 file changed, 2 insertions(+)
diff --git
a/src/main/org/apache/tools/ant/taskdefs/optional/junitlauncher/LauncherSupport.java
b/src/main/org/apache/tools/ant/taskdefs/optional/junitlauncher/LauncherSupport.java
index f209ac1..008db18 100644
---
a/src/main/org/apache/tools/ant/taskdefs/optional/junitlauncher/LauncherSupport.java
+++
b/src/main/org/apache/tools/ant/taskdefs/optional/junitlauncher/LauncherSupport.java
@@ -624,6 +624,8 @@ public class LauncherSupport {
sb.append(summary.getTestsStartedCount());
sb.append(", Failures: ");
sb.append(summary.getTestsFailedCount());
+ sb.append(", Aborted: ");
+ sb.append(summary.getTestsAbortedCount());
sb.append(", Skipped: ");
sb.append(summary.getTestsSkippedCount());
sb.append(", Time elapsed: ");