Nathan Beyer wrote:
> The classlib tests will pass on Windows 2000 on a P3, if it's run on
> the IBM VM. There are some other tests failing now, but they seem to
> be failing on all platforms at the moment.

yep.  the properties test failure seems to be IBM VM specific, and
disabling the JIT works around it, so I propose it goes into the IBM
exclude list for now.

The URL connection test (below) is trying to connect to "intel.com",
which is disallowed by our test machine firewall rules -- can we fix
this to connect to our jetty server?

public void test_setDoInputZ() throws MalformedURLException, IOException {
        assertTrue("Used to test", true);
        HttpURLConnection u = null;

         u = (HttpURLConnection) (new
URL("http://intel.com";).openConnection());
         u.connect();

        try {
            u.setDoInput(true);
        } catch (IllegalStateException e) { // expected
        }
        }


> We're still working on the DRLVM bits, so that we can get it to run on a
> P3.

Ack.

Regards,
Tim

Reply via email to