From b6cff5fae1a91549402bdee55a1077719f7b9c65 Mon Sep 17 00:00:00 2001 From: Stephan Bergmann Date: Thu, 2 Oct 2014 09:40:43 +0200 Subject: More robust way to wait for finalization Change-Id: I99aa3ac27c5157a6858978da20e480bc9847d88f --- .../test/com/sun/star/lib/uno/helper/ComponentBase_Test.java | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) (limited to 'javaunohelper/test/com/sun/star/lib') diff --git a/javaunohelper/test/com/sun/star/lib/uno/helper/ComponentBase_Test.java b/javaunohelper/test/com/sun/star/lib/uno/helper/ComponentBase_Test.java index 89ab9ddc547e..44cfcb952c34 100644 --- a/javaunohelper/test/com/sun/star/lib/uno/helper/ComponentBase_Test.java +++ b/javaunohelper/test/com/sun/star/lib/uno/helper/ComponentBase_Test.java @@ -30,6 +30,7 @@ import static org.junit.Assert.assertEquals; import static org.junit.Assert.assertNotNull; import org.junit.Before; import org.junit.Test; +import util.WaitUnreachable; public class ComponentBase_Test { @@ -97,16 +98,12 @@ public class ComponentBase_Test @Test public void test_finalize() throws Exception { - logger.log(Level.INFO, "Testing ComponentBase: test_finalize()"); ComponentBase comp= new ComponentBase(); obj1.nDisposingCalled = 0; comp.addEventListener(obj1); - + WaitUnreachable u = new WaitUnreachable(comp); comp= null; - System.gc(); - System.runFinalization(); - logger.log(Level.FINE, "Waiting 51ms (-XX:MaxGCPauseMillis=50)"); - Thread.sleep(51); + u.waitUnreachable(); assertEquals(obj1.nDisposingCalled, 1); } -} \ No newline at end of file +} -- cgit