302303304305306307308309310
threadA.start(); threadB.start(); threadA.doJoin(); threadB.doJoin(); } } }
4445464748495051525354
}; thread.start(); try { thread.doJoin(); fail("Should not be here!"); } catch (Throwable t) { if (t instanceof AssertionFailedError == false)
304305306307308309310311312313314
threadA.start(); threadB.start(); threadA.doJoin(); threadB.doJoin(); } } public void testFlushOnImports() throws Exception {