blob: d8adc2ceb52a3c0bb3ee58c506def6e2570ab11b [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.apache.harmony.drlvm.tests.regression.h3816;
import junit.framework.TestCase;
public class Test extends TestCase {
public void testIt() {
try {
WorkerThread worker = new WorkerThread();
worker.setDaemon(true);
worker.start();
Thread.sleep(1000);
worker.suspend();
worker.resume();
System.out.println("PASSED");
} catch (InterruptedException e) {
}
}
public static class WorkerThread extends Thread {
private int foo(int n) {
if (n <= 0) return 1;
return foo(n-1) * n;
}
public void run() {
while(true) {
try {
foo(100);
} finally {
continue;
}
}
}
}
}