Commit 6bca4ff6 by David Daney Committed by David Daney

re PR libgcj/18220 (Test case libjava.lang/Process_3 does not end if "sed" not available)

2005-05-17  David Daney  <ddaney@avtrex.com>

	PR libgcj/18220
	* testsuite/libjava.lang/Process_3.java (run):  Exit on error.

From-SVN: r99877
parent b4cbb631
2005-05-17 David Daney <ddaney@avtrex.com>
PR libgcj/18220
* testsuite/libjava.lang/Process_3.java (run): Exit on error.
2005-05-17 Nathan Sidwell <nathan@codesourcery.com>
* exception.cc (abort): Remove std::abort hack.
......
......@@ -30,6 +30,7 @@ public class Process_3 implements Runnable
catch (Exception ex)
{
System.out.println(ex.toString());
System.exit(1);
}
}
......
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