This is the mail archive of the java-patches@sourceware.cygnus.com mailing list for the Java project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

Patch: fix for test pr109.java


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 ();
     }
 }

Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]