--- jsr166/src/test/tck/ForkJoinPool8Test.java 2013/03/22 16:10:19 1.5 +++ jsr166/src/test/tck/ForkJoinPool8Test.java 2013/03/22 19:02:27 1.6 @@ -403,23 +403,6 @@ public class ForkJoinPool8Test extends J } /** - * helpQuiesce returns when tasks are complete. - * getQueuedTaskCount returns 0 when quiescent - */ - public void testForkHelpQuiesce() { - RecursiveAction a = new CheckedRecursiveAction() { - public void realCompute() { - FibAction f = new FibAction(8); - assertSame(f, f.fork()); - helpQuiesce(); - assertEquals(21, f.result); - assertEquals(0, getQueuedTaskCount()); - checkCompletedNormally(f); - }}; - checkInvoke(a); - } - - /** * invoke task throws exception when task completes abnormally */ public void testAbnormalInvoke() { @@ -1097,23 +1080,6 @@ public class ForkJoinPool8Test extends J checkCompletedNormally(f); }}; checkInvoke(a); - } - - /** - * helpQuiesce returns when tasks are complete. - * getQueuedTaskCount returns 0 when quiescent - */ - public void testForkHelpQuiesceCC() { - ForkJoinTask a = new CheckedFJTask() { - public void realCompute() { - CCF f = new LCCF(null, 8); - assertSame(f, f.fork()); - helpQuiesce(); - assertEquals(21, f.number); - assertEquals(0, getQueuedTaskCount()); - checkCompletedNormally(f); - }}; - checkInvoke(a); } /**