FELIX-4546 : Implement HttpServiceRuntime service. There might be more than one endpoint

git-svn-id: https://svn.apache.org/repos/asf/felix/trunk@1674881 13f79535-47bb-0310-9956-ffa450edef68
diff --git a/http/itest/src/test/java/org/apache/felix/http/itest/HttpServiceRuntimeTest.java b/http/itest/src/test/java/org/apache/felix/http/itest/HttpServiceRuntimeTest.java
index 5dee199..d1bc0ad 100644
--- a/http/itest/src/test/java/org/apache/felix/http/itest/HttpServiceRuntimeTest.java
+++ b/http/itest/src/test/java/org/apache/felix/http/itest/HttpServiceRuntimeTest.java
@@ -1332,8 +1332,10 @@
     @Test
     public void serviceEndpointPropertyIsSet()
     {
-        String[] endpoint = (String[]) m_context.getServiceReference(HttpServiceRuntime.class).getProperty(HTTP_SERVICE_ENDPOINT_ATTRIBUTE);
-        assertEquals(1, endpoint.length);
+        // if there is more than one network interface, there might be more than one endpoint!
+        final String[] endpoint = (String[]) m_context.getServiceReference(HttpServiceRuntime.class).getProperty(HTTP_SERVICE_ENDPOINT_ATTRIBUTE);
+        assertNotNull(endpoint);
+        assertTrue(endpoint.length > 1);
         assertTrue(endpoint[0].startsWith("http://"));
         assertTrue(endpoint[0].endsWith(":8080/"));
     }