diff options
3 files changed, 11 insertions, 7 deletions
diff --git a/ridljar/test/com/sun/star/lib/uno/environments/remote/JobQueue_Test.java b/ridljar/test/com/sun/star/lib/uno/environments/remote/JobQueue_Test.java index a63c9c7ed6ba..aae787fed040 100644 --- a/ridljar/test/com/sun/star/lib/uno/environments/remote/JobQueue_Test.java +++ b/ridljar/test/com/sun/star/lib/uno/environments/remote/JobQueue_Test.java @@ -150,7 +150,7 @@ public final class JobQueue_Test { "notifyme"), true, null, false, null, null)), null); - while (!workAt._notified) { + while (!workAt.isNotified()) { workAt.wait(); } } @@ -173,7 +173,7 @@ public final class JobQueue_Test { __workAt_td.getMethodDescription("notifyme"), true, null, false, null, null)), null); - while (!workAt._notified) { + while (!workAt.isNotified()) { workAt.wait(); } } diff --git a/ridljar/test/com/sun/star/lib/uno/environments/remote/TestWorkAt.java b/ridljar/test/com/sun/star/lib/uno/environments/remote/TestWorkAt.java index 93297815cb9e..8f91e4ba3c54 100644 --- a/ridljar/test/com/sun/star/lib/uno/environments/remote/TestWorkAt.java +++ b/ridljar/test/com/sun/star/lib/uno/environments/remote/TestWorkAt.java @@ -36,7 +36,7 @@ class TestWorkAt implements TestIWorkAt { int _async_counter; private boolean _passedAsync = true; - boolean _notified = false; + private boolean _notified = false; public synchronized void syncCall() throws Throwable { ++ _sync_counter; @@ -71,6 +71,10 @@ class TestWorkAt implements TestIWorkAt { _notified = true; } + public synchronized boolean isNotified() { + return _notified; + } + public synchronized boolean passedAsyncTest() { assertEquals(MESSAGES, _sync_counter); assertTrue(_passedAsync); diff --git a/ridljar/test/com/sun/star/lib/uno/environments/remote/ThreadPool_Test.java b/ridljar/test/com/sun/star/lib/uno/environments/remote/ThreadPool_Test.java index 7da68db23f0e..c97ebd0c209c 100644 --- a/ridljar/test/com/sun/star/lib/uno/environments/remote/ThreadPool_Test.java +++ b/ridljar/test/com/sun/star/lib/uno/environments/remote/ThreadPool_Test.java @@ -74,7 +74,7 @@ public class ThreadPool_Test { synchronized(workAt) { putJob(workAt, false, threadId, "notifyme"); - while(!workAt._notified) { + while(!workAt.isNotified()) { workAt.wait(); } } @@ -96,7 +96,7 @@ public class ThreadPool_Test { synchronized(workAt) { putJob(workAt, true, threadId, "notifyme"); - while(!workAt._notified) { + while(!workAt.isNotified()) { workAt.wait(); } } @@ -164,7 +164,7 @@ public class ThreadPool_Test { synchronized(workAt) { putJob(workAt, true, threadId, "notifyme"); - while(!workAt._notified) { + while(!workAt.isNotified()) { workAt.wait(); } } @@ -326,7 +326,7 @@ public class ThreadPool_Test { synchronized(workAt) { putJob(workAt, false, threadId, "notifyme"); - while(!workAt._notified) { + while(!workAt.isNotified()) { workAt.wait(); } } |