]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
* libjava.lang/pr109.java: Added `println' at end.
authorTom Tromey <tromey@cygnus.com>
Sun, 19 Mar 2000 04:35:24 +0000 (04:35 +0000)
committerTom Tromey <tromey@gcc.gnu.org>
Sun, 19 Mar 2000 04:35:24 +0000 (04:35 +0000)
From-SVN: r32627

libjava/testsuite/ChangeLog
libjava/testsuite/libjava.lang/pr109.java

index f1ba6d436d09a4c91ac45a400492fda23d1fce21..d0b3c1af600c5e330a2341974e13c3e225dd028a 100644 (file)
@@ -1,3 +1,7 @@
+2000-03-18  Tom Tromey  <tromey@cygnus.com>
+
+       * libjava.lang/pr109.java: Added `println' at end.
+
 2000-03-15  Tom Tromey  <tromey@cygnus.com>
 
        * libjava.compile/pr176.java: New file, for PR gcj/176.
index afb07e71ab80d140fddce0656e7b4da2b73f7832..17c4b2301bbc8f768624fd80c09693e14a833b55 100644 (file)
@@ -21,5 +21,9 @@ public class pr109
              break;
            System.out.print (i);
          }
+
+      // We print a newline here because otherwise the DejaGNU log
+      // file is screwed up.
+      System.out.println ();
     }
 }