<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">diff -ru Ice-3.5.0.orig/cpp/test/Ice/info/AllTests.cpp Ice-3.5.0/cpp/test/Ice/info/AllTests.cpp
--- Ice-3.5.0.orig/cpp/test/Ice/info/AllTests.cpp	2013-03-11 08:19:47.000000000 -0700
+++ Ice-3.5.0/cpp/test/Ice/info/AllTests.cpp	2013-03-11 22:34:18.777888068 -0700
@@ -145,9 +145,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();
@@ -167,8 +169,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>