diff options
author | mark <mark@138bc75d-0d04-0410-961f-82ee72b054a4> | 2006-05-18 17:29:21 +0000 |
---|---|---|
committer | mark <mark@138bc75d-0d04-0410-961f-82ee72b054a4> | 2006-05-18 17:29:21 +0000 |
commit | 64089cc9f030d8ef7972adb5d117e0b23f47d62b (patch) | |
tree | 9f9c470de62ee62fba1331a396450d728d2b1fad /libjava/classpath/test/java.io/PushbackReaderTest.java | |
parent | 96034e28360d660d7a7708807fcbc4b519574d8e (diff) | |
download | gcc-64089cc9f030d8ef7972adb5d117e0b23f47d62b.tar.gz |
Imported GNU Classpath 0.90
* scripts/makemake.tcl: LocaleData.java moved to gnu/java/locale.
* sources.am: Regenerated.
* gcj/javaprims.h: Regenerated.
* Makefile.in: Regenerated.
* gcj/Makefile.in: Regenerated.
* include/Makefile.in: Regenerated.
* testsuite/Makefile.in: Regenerated.
* gnu/java/lang/VMInstrumentationImpl.java: New override.
* gnu/java/net/local/LocalSocketImpl.java: Likewise.
* gnu/classpath/jdwp/VMMethod.java: Likewise.
* gnu/classpath/jdwp/VMVirtualMachine.java: Update to latest
interface.
* java/lang/Thread.java: Add UncaughtExceptionHandler.
* java/lang/reflect/Method.java: Implements GenericDeclaration and
isSynthetic(),
* java/lang/reflect/Field.java: Likewise.
* java/lang/reflect/Constructor.java
* java/lang/Class.java: Implements Type, GenericDeclaration,
getSimpleName() and getEnclosing*() methods.
* java/lang/Class.h: Add new public methods.
* java/lang/Math.java: Add signum(), ulp() and log10().
* java/lang/natMath.cc (log10): New function.
* java/security/VMSecureRandom.java: New override.
* java/util/logging/Logger.java: Updated to latest classpath
version.
* java/util/logging/LogManager.java: New override.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@113887 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libjava/classpath/test/java.io/PushbackReaderTest.java')
-rw-r--r-- | libjava/classpath/test/java.io/PushbackReaderTest.java | 115 |
1 files changed, 0 insertions, 115 deletions
diff --git a/libjava/classpath/test/java.io/PushbackReaderTest.java b/libjava/classpath/test/java.io/PushbackReaderTest.java deleted file mode 100644 index 3378306234b..00000000000 --- a/libjava/classpath/test/java.io/PushbackReaderTest.java +++ /dev/null @@ -1,115 +0,0 @@ -/************************************************************************* -/* PushbackReaderTest.java -- Tests PushbackReader's of course -/* -/* Copyright (c) 1998 Free Software Foundation, Inc. -/* Written by Aaron M. Renn (arenn@urbanophile.com) -/* -/* This program is free software; you can redistribute it and/or modify -/* it under the terms of the GNU General Public License as published -/* by the Free Software Foundation, either version 2 of the License, or -/* (at your option) any later version. -/* -/* This program is distributed in the hope that it will be useful, but -/* WITHOUT ANY WARRANTY; without even the implied warranty of -/* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -/* GNU General Public License for more details. -/* -/* You should have received a copy of the GNU General Public License -/* along with this program; if not, write to the Free Software Foundation -/* Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA -/*************************************************************************/ - -import java.io.*; - -public class PushbackReaderTest extends PushbackReader -{ - -public -PushbackReaderTest(Reader r, int size) -{ - super(r, size); -} - -public static void -main(String[] argv) -{ - System.out.println("Started test of PushbackReader"); - - String str = "I used to idolize my older cousin Kurt. I wanted to be\n" + - "just like him when I was a kid. (Now we are as different as night\n" + - "and day - but still like each other). One thing he did for a while\n" + - "was set traps for foxes thinking he would make money off sellnig furs.\n" + - "Now I never saw a fox in all my years of Southern Indiana. That\n" + - "didn't deter us. One time we went out in the middle of winter to\n" + - "check our traps. It was freezing and I stepped onto a frozen over\n" + - "stream. The ice broke and I got my foot soak. Despite the fact that\n" + - "it made me look like a girl, I turned around and went straight home.\n" + - "Good thing too since I couldn't even feel my foot by the time I got\n" + - "there.\n"; - - System.out.println("Test 1: Basic Unread Tests"); - try - { - PushbackReaderTest prt = new PushbackReaderTest( - new StringReader(str), 15); - - char[] read_buf1 = new char[12]; - char[] read_buf2 = new char[12]; - - boolean passed = true; - - prt.read(read_buf1); - prt.unread(read_buf1); - prt.read(read_buf2); - - for (int i = 0; i < read_buf1.length; i++) - { - if (read_buf1[i] != read_buf2[i]) - passed = false; - } - - prt.unread(read_buf2, 1, read_buf2.length - 1); - prt.unread(read_buf2[0]); - - int chars_read, total_read = 0; - while ((chars_read = prt.read(read_buf1)) != -1) - { - System.out.print(new String(read_buf1, 0, chars_read)); - total_read += chars_read; - } - - if (total_read != str.length()) - passed = false; - - if (passed) - System.out.println("PASSED: Basic Unread Tests"); - else - System.out.println("FAILED: Basic Unread Tests"); - } - catch(IOException e) - { - System.out.println("FAILED: Basic Unread Tests: " + e); - } - - System.out.println("Test 3: Buffer Overflow Test"); - try - { - PushbackReaderTest prt = new PushbackReaderTest( - new StringReader(str), 10); - - char[] read_buf = new char[12]; - - prt.read(read_buf); - prt.unread(read_buf); - System.out.println("FAILED: Buffer Overflow Test"); - } - catch(IOException e) - { - System.out.println("PASSED: Buffer Overflow Test: " + e); - } - - System.out.println("Finished tests of PushbackReader"); -} // main - -} // class PushbackReaderTest - |