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
This commit is contained in:
David Daney 2005-05-18 01:00:16 +00:00 committed by David Daney
parent b4cbb63176
commit 6bca4ff625
2 changed files with 6 additions and 0 deletions

View file

@ -30,6 +30,7 @@ public class Process_3 implements Runnable
catch (Exception ex)
{
System.out.println(ex.toString());
System.exit(1);
}
}