This is the mail archive of the
java-patches@sourceware.cygnus.com
mailing list for the Java project.
Patch: fix for test pr109.java
- To: Java Patch List <java-patches at sourceware dot cygnus dot com>
- Subject: Patch: fix for test pr109.java
- From: Tom Tromey <tromey at cygnus dot com>
- Date: 18 Mar 2000 21:36:28 -0700
- Reply-To: tromey at cygnus dot com
I'm checking in this change.
It adds a newline to the end of "pr109"'s output.
This makes the dejagnu log a bit better.
2000-03-18 Tom Tromey <tromey@cygnus.com>
* libjava.lang/pr109.java: Added `println' at end.
Tom
Index: pr109.java
===================================================================
RCS file: /cvs/java/libgcj/libjava/testsuite/libjava.lang/pr109.java,v
retrieving revision 1.1
diff -u -r1.1 pr109.java
--- pr109.java 2000/01/16 19:55:09 1.1
+++ pr109.java 2000/03/19 04:25:38
@@ -21,5 +21,9 @@
break;
System.out.print (i);
}
+
+ // We print a newline here because otherwise the DejaGNU log
+ // file is screwed up.
+ System.out.println ();
}
}