Skip to content

Commit

Permalink
Bug 573206 - I20210428-0040 - BUILD FAILED with compilation failure in
Browse files Browse the repository at this point in the history
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
  • Loading branch information
sravanlakkimsetti committed Apr 28, 2021
1 parent 87a25cc commit 3b93e41
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 3 deletions.
2 changes: 1 addition & 1 deletion bundles/org.eclipse.test/META-INF/MANIFEST.MF
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion bundles/org.eclipse.test/pom.xml
Expand Up @@ -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>
Expand Down
@@ -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
Expand Down Expand Up @@ -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) {
Expand Down Expand Up @@ -156,6 +158,11 @@ private final class Stats {
this.startedAt = startedAt;
}
}
@Override
public void setUseLegacyReportingName(final boolean useLegacyReportingName) {
this.useLegacyReportingName = useLegacyReportingName;
}


private final class XMLReportWriter {

Expand Down

0 comments on commit 3b93e41

Please sign in to comment.