Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThomas Watson2017-09-18 13:02:03 +0000
committerThomas Watson2017-09-28 13:40:06 +0000
commit55b071a8b2abbecd6f402f8b1f057af7ce5b0cac (patch)
tree85bef939d0ca10639b26bdc8aaa386be3df6b0a7
parent2f2ef79947810b0e1ab846c1fc80e531637d5043 (diff)
downloadrt.equinox.framework-55b071a8b2abbecd6f402f8b1f057af7ce5b0cac.tar.gz
rt.equinox.framework-55b071a8b2abbecd6f402f8b1f057af7ce5b0cac.tar.xz
rt.equinox.framework-55b071a8b2abbecd6f402f8b1f057af7ce5b0cac.zip
Bug 522430 - ClassLoadingBundleTests.testContextFinderEmptyGetResources
is failing on ep48I-unit-cen64-gtk3 Change test to use a different port from 8888
-rw-r--r--bundles/org.eclipse.osgi.tests/META-INF/MANIFEST.MF2
-rw-r--r--bundles/org.eclipse.osgi.tests/pom.xml2
-rw-r--r--bundles/org.eclipse.osgi.tests/src/org/eclipse/osgi/tests/bundles/ClassLoadingBundleTests.java4
3 files changed, 4 insertions, 4 deletions
diff --git a/bundles/org.eclipse.osgi.tests/META-INF/MANIFEST.MF b/bundles/org.eclipse.osgi.tests/META-INF/MANIFEST.MF
index 659cdd24f..36ba6be40 100644
--- a/bundles/org.eclipse.osgi.tests/META-INF/MANIFEST.MF
+++ b/bundles/org.eclipse.osgi.tests/META-INF/MANIFEST.MF
@@ -2,7 +2,7 @@ Manifest-Version: 1.0
Bundle-ManifestVersion: 2
Bundle-Name: Core OSGi Tests
Bundle-SymbolicName: org.eclipse.osgi.tests;singleton:=true
-Bundle-Version: 3.12.1.qualifier
+Bundle-Version: 3.12.51.qualifier
Bundle-Vendor: Eclipse.org
Bundle-Localization: plugin
Require-Bundle:
diff --git a/bundles/org.eclipse.osgi.tests/pom.xml b/bundles/org.eclipse.osgi.tests/pom.xml
index 5d57bec5a..4dff58ca2 100644
--- a/bundles/org.eclipse.osgi.tests/pom.xml
+++ b/bundles/org.eclipse.osgi.tests/pom.xml
@@ -19,7 +19,7 @@
</parent>
<groupId>org.eclipse.osgi</groupId>
<artifactId>org.eclipse.osgi.tests</artifactId>
- <version>3.12.1-SNAPSHOT</version>
+ <version>3.12.51-SNAPSHOT</version>
<packaging>eclipse-test-plugin</packaging>
<properties>
diff --git a/bundles/org.eclipse.osgi.tests/src/org/eclipse/osgi/tests/bundles/ClassLoadingBundleTests.java b/bundles/org.eclipse.osgi.tests/src/org/eclipse/osgi/tests/bundles/ClassLoadingBundleTests.java
index 1acbfb4a1..2ead72f16 100644
--- a/bundles/org.eclipse.osgi.tests/src/org/eclipse/osgi/tests/bundles/ClassLoadingBundleTests.java
+++ b/bundles/org.eclipse.osgi.tests/src/org/eclipse/osgi/tests/bundles/ClassLoadingBundleTests.java
@@ -1,5 +1,5 @@
/*******************************************************************************
- * Copyright (c) 2006, 2016 IBM Corporation and others.
+ * Copyright (c) 2006, 2017 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
@@ -1739,7 +1739,7 @@ public class ClassLoadingBundleTests extends AbstractBundleTests {
try {
pool = Executors.newFixedThreadPool(3);
- final String address = "http://localhost:8888/service";
+ final String address = "http://localhost:23512/service";
final WebService annotation = TestService.class.getAnnotation(WebService.class);
final String namespaceURI = annotation.serviceName();

Back to the top