Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSravan Kumar Lakkimsetti2021-04-28 06:53:23 +0000
committerSravan Kumar Lakkimsetti2021-04-28 07:36:24 +0000
commit3b93e4149e92a4d567a2c040c6953311b9fdb135 (patch)
tree07c6f7e863f45dd73beace08d716bf5bbc1780ad
parent87a25cc861e9bf102457409f32afd16722fc2bb1 (diff)
downloadeclipse.platform.releng-3b93e4149e92a4d567a2c040c6953311b9fdb135.tar.gz
eclipse.platform.releng-3b93e4149e92a4d567a2c040c6953311b9fdb135.tar.xz
eclipse.platform.releng-3b93e4149e92a4d567a2c040c6953311b9fdb135.zip
Bug 573206 - I20210428-0040 - BUILD FAILED with compilation failure inI20210428-0330
org.eclipse.test Update to Ant 1.10.10 Change-Id: I5273072f05d1080b2df61e8c839b4292d1b63c48 Signed-off-by: Sravan Kumar Lakkimsetti <sravankumarl@in.ibm.com> Reviewed-on: https://git.eclipse.org/r/c/platform/eclipse.platform.releng/+/179905
-rw-r--r--bundles/org.eclipse.test/META-INF/MANIFEST.MF2
-rw-r--r--bundles/org.eclipse.test/pom.xml2
-rw-r--r--bundles/org.eclipse.test/src/org/eclipse/test/LegacyXmlResultFormatter.java9
3 files changed, 10 insertions, 3 deletions
diff --git a/bundles/org.eclipse.test/META-INF/MANIFEST.MF b/bundles/org.eclipse.test/META-INF/MANIFEST.MF
index 4b19e678..e533287c 100644
--- a/bundles/org.eclipse.test/META-INF/MANIFEST.MF
+++ b/bundles/org.eclipse.test/META-INF/MANIFEST.MF
@@ -2,7 +2,7 @@ Manifest-Version: 1.0
Bundle-ManifestVersion: 2
Bundle-Name: %pluginName
Bundle-SymbolicName: org.eclipse.test; singleton:=true
-Bundle-Version: 3.4.700.qualifier
+Bundle-Version: 3.4.800.qualifier
Eclipse-BundleShape: dir
Bundle-Vendor: %providerName
Bundle-Localization: plugin
diff --git a/bundles/org.eclipse.test/pom.xml b/bundles/org.eclipse.test/pom.xml
index 5127ec6f..c3d51868 100644
--- a/bundles/org.eclipse.test/pom.xml
+++ b/bundles/org.eclipse.test/pom.xml
@@ -19,7 +19,7 @@
</parent>
<groupId>org.eclipse.test</groupId>
<artifactId>org.eclipse.test</artifactId>
- <version>3.4.700-SNAPSHOT</version>
+ <version>3.4.800-SNAPSHOT</version>
<packaging>eclipse-plugin</packaging>
<properties>
<defaultSigning-excludeInnerJars>true</defaultSigning-excludeInnerJars>
diff --git a/bundles/org.eclipse.test/src/org/eclipse/test/LegacyXmlResultFormatter.java b/bundles/org.eclipse.test/src/org/eclipse/test/LegacyXmlResultFormatter.java
index e7011aae..99676ef7 100644
--- a/bundles/org.eclipse.test/src/org/eclipse/test/LegacyXmlResultFormatter.java
+++ b/bundles/org.eclipse.test/src/org/eclipse/test/LegacyXmlResultFormatter.java
@@ -1,5 +1,5 @@
/*******************************************************************************
- * Copyright (c) 2018 Red Hat Inc. and others.
+ * Copyright (c) 2021 Red Hat Inc. and others.
*
* This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
@@ -64,6 +64,8 @@ public class LegacyXmlResultFormatter extends AbstractJUnitResultFormatter {
final AtomicLong numTestsSkipped = new AtomicLong(0);
final AtomicLong numTestsAborted = new AtomicLong(0);
+ private boolean useLegacyReportingName = false;
+
@Override
public void testPlanExecutionStarted(final TestPlan plan) {
@@ -156,6 +158,11 @@ public class LegacyXmlResultFormatter extends AbstractJUnitResultFormatter {
this.startedAt = startedAt;
}
}
+ @Override
+ public void setUseLegacyReportingName(final boolean useLegacyReportingName) {
+ this.useLegacyReportingName = useLegacyReportingName;
+ }
+
private final class XMLReportWriter {

Back to the top