public inbox for mauve-patches@sourceware.org
 help / color / mirror / Atom feed
* Patch: FYI: ProcessBuilder test
@ 2007-02-05 20:57 Tom Tromey
  0 siblings, 0 replies; only message in thread
From: Tom Tromey @ 2007-02-05 20:57 UTC (permalink / raw)
  To: Mauve Patch List

Here's a little ProcessBuilder test case.

Tom

Index: ChangeLog
from  Tom Tromey  <tromey@redhat.com>

	* gnu/testlet/java/lang/ProcessBuilder/simple.java: New file.

Index: gnu/testlet/java/lang/ProcessBuilder/simple.java
===================================================================
RCS file: gnu/testlet/java/lang/ProcessBuilder/simple.java
diff -N gnu/testlet/java/lang/ProcessBuilder/simple.java
--- /dev/null	1 Jan 1970 00:00:00 -0000
+++ gnu/testlet/java/lang/ProcessBuilder/simple.java 5 Feb 2007 20:57:01 -0000
@@ -0,0 +1,45 @@
+// Copyright (C) 2007 Red Hat, Inc.
+
+// Tags: JDK1.5
+
+// This file is part of Mauve.
+
+// Mauve 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, or (at your option)
+// any later version.
+
+// Mauve 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 Mauve; see the file COPYING.  If not, write to
+// the Free Software Foundation, 59 Temple Place - Suite 330,
+// Boston, MA 02111-1307, USA.
+
+package gnu.testlet.java.lang.ProcessBuilder;
+
+import gnu.testlet.Testlet;
+import gnu.testlet.TestHarness;
+import java.io.IOException;
+
+public class simple implements Testlet
+{
+  public void test(TestHarness harness)
+  {
+    try
+      {
+	ProcessBuilder p1 = new ProcessBuilder("ls", "/nosuchdirectory");
+	p1.redirectErrorStream(true);
+	Process p = p1.start();
+	byte[] buffer = new byte[1024];
+	harness.check(p.getInputStream().read(buffer) != -1);
+      }
+    catch (IOException _)
+      {
+	harness.check(false);
+      }	
+  }
+}

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2007-02-05 20:57 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2007-02-05 20:57 Patch: FYI: ProcessBuilder test Tom Tromey

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).