[py-svn] r37783 - py/trunk/py/execnet/testing

hpk at codespeak.net hpk at codespeak.net
Fri Feb 2 01:32:27 CET 2007


Author: hpk
Date: Fri Feb  2 01:32:24 2007
New Revision: 37783

Modified:
   py/trunk/py/execnet/testing/test_gateway.py
Log:
puh, it took me quite a while to find out why
ssh-stdout-confusion tests involving "os.write(1, ...)" 
were passing on earlier revisions: in 35888 
a test name got fixed, but when you specify "-S somehost" 
then this will hang, so i am skipping the test for
now, this never worked. 



Modified: py/trunk/py/execnet/testing/test_gateway.py
==============================================================================
--- py/trunk/py/execnet/testing/test_gateway.py	(original)
+++ py/trunk/py/execnet/testing/test_gateway.py	Fri Feb  2 01:32:24 2007
@@ -454,6 +454,9 @@
             py.test.skip("no known ssh target, use -S to set one")
         cls.gw = py.execnet.SshGateway(option.sshtarget) 
 
+    def test_confusion_from_os_write_stdout(self):
+        py.test.skip("writing to FD 1 with SshGateways not supported yet")
+
     def test_sshaddress(self):
         assert self.gw.remoteaddress == option.sshtarget
 


More information about the py-svn mailing list