You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by mt...@apache.org on 2009/09/17 18:44:49 UTC

svn commit: r816270 - /commons/sandbox/runtime/trunk/src/test/org/apache/commons/runtime/TestSignal.java

Author: mturk
Date: Thu Sep 17 16:44:49 2009
New Revision: 816270

URL: http://svn.apache.org/viewvc?rev=816270&view=rev
Log:
Add commented signal test case. This will go in examples

Modified:
    commons/sandbox/runtime/trunk/src/test/org/apache/commons/runtime/TestSignal.java

Modified: commons/sandbox/runtime/trunk/src/test/org/apache/commons/runtime/TestSignal.java
URL: http://svn.apache.org/viewvc/commons/sandbox/runtime/trunk/src/test/org/apache/commons/runtime/TestSignal.java?rev=816270&r1=816269&r2=816270&view=diff
==============================================================================
--- commons/sandbox/runtime/trunk/src/test/org/apache/commons/runtime/TestSignal.java (original)
+++ commons/sandbox/runtime/trunk/src/test/org/apache/commons/runtime/TestSignal.java Thu Sep 17 16:44:49 2009
@@ -110,4 +110,15 @@
         assertEquals("Signaled" , 4, counter);
     }
 
+    /*
+     * Use for sending kill -SIGNAL pid
+     *
+    public void testInteractive()
+        throws Exception
+    {
+        System.out.println();
+        System.out.println("Press ENTER to continue");
+        System.in.read();
+    }
+    */
 }