<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">--- Ice-3.4.2.orig/cpp/test/Ice/info/AllTests.cpp	2011-06-15 21:43:59.000000000 +0200
+++ Ice-3.4.2/cpp/test/Ice/info/AllTests.cpp	2012-03-04 20:14:53.000000000 +0100
@@ -141,9 +141,11 @@
         test(info-&gt;adapterName.empty());
         test(info-&gt;localPort &gt; 0);
         test(info-&gt;remotePort == 12010);
-        test(info-&gt;remoteAddress == defaultHost);
-        test(info-&gt;localAddress == defaultHost);
-
+        if (!inFreeBSDJail())
+        {
+            test(info-&gt;remoteAddress == defaultHost);
+            test(info-&gt;localAddress == defaultHost);
+        }
         ostringstream os;
 
         Ice::Context ctx = testIntf-&gt;getConnectionInfoAsContext();
@@ -163,8 +165,11 @@
         test(info-&gt;adapterName.empty());
         test(info-&gt;localPort &gt; 0);
         test(info-&gt;remotePort == 12010);
-        test(info-&gt;remoteAddress ==defaultHost);
-        test(info-&gt;localAddress == defaultHost);
+        if (!inFreeBSDJail())
+        {
+            test(info-&gt;remoteAddress == defaultHost);
+            test(info-&gt;localAddress == defaultHost);
+        }
     }
     cout &lt;&lt; "ok" &lt;&lt; endl;
 
</pre></body></html>