Commit c60fe329 by Andreas Tobler Committed by Andreas Tobler

stringconst2.java: Print a stack trace in case of failure.

2006-04-17  Andreas Tobler  <a.tobler@schweiz.ch>

	* testsuite/libjava.lang/stringconst2.java: Print a stack trace in case
	of failure.

From-SVN: r113011
parent 778f6a08
2006-04-17 Andreas Tobler <a.tobler@schweiz.ch>
* testsuite/libjava.lang/stringconst2.java: Print a stack trace in case
of failure.
2006-04-13 Tom Tromey <tromey@redhat.com>
PR libgcj/26522:
......
......@@ -14,8 +14,9 @@ public class stringconst2
Field f = k.getField ("q");
System.out.println (f.get (null));
}
catch (Throwable _)
catch (Throwable t)
{
t.printStackTrace();
}
}
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment