|
From: Markus B. <mba...@us...> - 2005-09-18 12:48:11
|
Update of /cvsroot/rubyeclipse/org.rubypeople.rdt.debug.core.tests/src/org/rubypeople/rdt/debug/core/tests In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv29733/src/org/rubypeople/rdt/debug/core/tests Modified Files: TC_DebuggerCommunicationTest.java Log Message: Added sleep after destroying the ruby process Index: TC_DebuggerCommunicationTest.java =================================================================== RCS file: /cvsroot/rubyeclipse/org.rubypeople.rdt.debug.core.tests/src/org/rubypeople/rdt/debug/core/tests/TC_DebuggerCommunicationTest.java,v retrieving revision 1.34 retrieving revision 1.35 diff -C2 -d -r1.34 -r1.35 *** TC_DebuggerCommunicationTest.java 18 Sep 2005 12:27:23 -0000 1.34 --- TC_DebuggerCommunicationTest.java 18 Sep 2005 12:48:01 -0000 1.35 *************** *** 230,233 **** --- 230,237 ---- process.destroy(); System.out.println("Ruby process had to be destroyed."); + // wait so that the debugger port will be availabel for the next test + // There seems to be a delay after the destroying of a process and + // freeing the server port + Thread.sleep(5000) ; } |