/*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* under the terms of the GNU General Public License version 2 only, as
* published by the Free Software Foundation.
*
* This code is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
* version 2 for more details (a copy is included in the LICENSE file that
* accompanied this code).
*
* You should have received a copy of the GNU General Public License version
* 2 along with this work; if not, write to the Free Software Foundation,
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
*
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
* or visit www.oracle.com if you need additional information or have any
* questions.
*/
/*
* @test
* @bug 4919105
* @summary Generified basic unit test of Thread.getAllStackTraces()
* @author Mandy Chung
*/
public class GenerifyStackTraces {
private static boolean testFailed = false;
private static boolean trace = false;
trace = true;
}
if (testFailed) {
throw new RuntimeException("Test Failed.");
}
}
public void run() {
int depth = 2;
while (true) {
// At each iterator, wait until ThreadOne blocks
// to wait for thread dump.
// Then dump stack trace and notify ThreadOne to continue.
try {
sleep(2000);
depth++;
finishDump();
} catch (Exception e) {
e.printStackTrace();
testFailed = true;
}
}
}
}
public void run() {
A();
}
private void A() {
waitForDump();
B();
}
private void B() {
waitForDump();
C();
}
private void C() {
waitForDump();
Done();
}
private void Done() {
waitForDump();
// Get stack trace of current thread
try {
} catch (Exception e) {
e.printStackTrace();
testFailed = true;
}
}
}
static private void waitForDump() {
synchronized(go) {
try {
} catch (Exception e) {
throw new RuntimeException("Unexpected exception" + e);
}
}
}
static private void finishDump() {
synchronized(go) {
try {
} catch (Exception e) {
throw new RuntimeException("Unexpected exception" + e);
}
}
}
// Get stack trace of another thread
// Get stack traces of all Threads
throw new RuntimeException("Null thread or stacktrace returned");
}
if (t == one) {
}
}
}
if (trace) {
printStack(t, stack);
}
}
frame--;
}
}
if (t != null) {
}
}
}
}