[jboss-remoting-commits] JBoss Remoting SVN: r5325 - remoting2/branches/2.x/src/tests/org/jboss/test/remoting/transport/socket/timeout.

jboss-remoting-commits at lists.jboss.org jboss-remoting-commits at lists.jboss.org
Wed Aug 5 22:41:12 EDT 2009


Author: ron.sigal at jboss.com
Date: 2009-08-05 22:41:11 -0400 (Wed, 05 Aug 2009)
New Revision: 5325

Modified:
   remoting2/branches/2.x/src/tests/org/jboss/test/remoting/transport/socket/timeout/WriteTimeoutTestParent.java
Log:
JBREM-1120: Elaborated logging.

Modified: remoting2/branches/2.x/src/tests/org/jboss/test/remoting/transport/socket/timeout/WriteTimeoutTestParent.java
===================================================================
--- remoting2/branches/2.x/src/tests/org/jboss/test/remoting/transport/socket/timeout/WriteTimeoutTestParent.java	2009-08-05 15:51:08 UTC (rev 5324)
+++ remoting2/branches/2.x/src/tests/org/jboss/test/remoting/transport/socket/timeout/WriteTimeoutTestParent.java	2009-08-06 02:41:11 UTC (rev 5325)
@@ -110,7 +110,7 @@
    }
    
    
-   public void testClientWriteTimeout() throws Throwable
+   public void xtestClientWriteTimeout() throws Throwable
    {
       log.info("entering " + getName());
       
@@ -160,7 +160,7 @@
    }
    
    
-   public void testServerWriteTimeout() throws Throwable
+   public void xtestServerWriteTimeout() throws Throwable
    {
       log.info("entering " + getName());
       
@@ -278,7 +278,7 @@
    }
    
    
-   public void testServerCallbackWriteTimeout() throws Throwable
+   public void xtestServerCallbackWriteTimeout() throws Throwable
    {
       log.info("entering " + getName());
       
@@ -697,7 +697,7 @@
       {
          closed = true;
          super.close();
-         log.info("closed");
+         log.info(this + " closed");
       }
       public void write(int b) throws IOException
       {
@@ -740,10 +740,19 @@
                e.printStackTrace();
             }
          }
-         log.info("TestOutputStream  writing");
-         doWait = false;
-         os.write(b, off, len);
-         doWait = true;
+         try
+         {
+            log.info(this + " writing");
+            doWait = false;
+            os.write(b, off, len);
+            doWait = true;
+            log.info(this + " back from writing");
+         }
+         catch (IOException e)
+         {
+            log.info("exception: ", e);
+            throw e;
+         }
       }
    }
 }
\ No newline at end of file



More information about the jboss-remoting-commits mailing list