Revision: 395
          http://rpy.svn.sourceforge.net/rpy/?rev=395&view=rev
Author:   warnes
Date:     2008-01-07 08:01:22 -0800 (Mon, 07 Jan 2008)

Log Message:
-----------
Add 1 second sleep to interrupt test to allow time for interrupt delivery

Modified Paths:
--------------
    trunk/rpy/tests/test_sigint.py

Modified: trunk/rpy/tests/test_sigint.py
===================================================================
--- trunk/rpy/tests/test_sigint.py      2008-01-02 17:57:04 UTC (rev 394)
+++ trunk/rpy/tests/test_sigint.py      2008-01-07 16:01:22 UTC (rev 395)
@@ -7,6 +7,7 @@
 import sys
 import os
 import signal
+import time
 
 
 def sendsig():
@@ -15,6 +16,7 @@
         raise KeyboardInterrupt
     else:
         os.kill(os.getpid(), signal.SIGINT)
+        time.sleep(1)
 
 class SigintTestCase(unittest.TestCase):
             


This was sent by the SourceForge.net collaborative development platform, the 
world's largest Open Source development site.

-------------------------------------------------------------------------
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2005.
http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/
_______________________________________________
rpy-list mailing list
rpy-list@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/rpy-list

Reply via email to