##// END OF EJS Templates
Merge pull request #2904 from minrk/winipc...
Min RK -
r9525:f474d500 merge
parent child Browse files
Show More
@@ -849,7 +849,7 b' class KernelManager(Configurable):'
849 self._connection_file_written = False
849 self._connection_file_written = False
850 try:
850 try:
851 os.remove(self.connection_file)
851 os.remove(self.connection_file)
852 except (IOError, OSError):
852 except (IOError, OSError, AttributeError):
853 pass
853 pass
854
854
855 def cleanup_ipc_files(self):
855 def cleanup_ipc_files(self):
@@ -65,15 +65,16 b' class TestKernelManager(TestCase):'
65 km = self._get_tcp_km()
65 km = self._get_tcp_km()
66 self._run_lifecycle(km)
66 self._run_lifecycle(km)
67
67
68 @dec.skip_win32
69 def test_tcp_cinfo(self):
68 def test_tcp_cinfo(self):
70 km = self._get_tcp_km()
69 km = self._get_tcp_km()
71 self._run_cinfo(km, 'tcp', LOCALHOST)
70 self._run_cinfo(km, 'tcp', LOCALHOST)
72
71
72 @dec.skip_win32
73 def test_ipc_lifecycle(self):
73 def test_ipc_lifecycle(self):
74 km = self._get_ipc_km()
74 km = self._get_ipc_km()
75 self._run_lifecycle(km)
75 self._run_lifecycle(km)
76
76
77 @dec.skip_win32
77 def test_ipc_cinfo(self):
78 def test_ipc_cinfo(self):
78 km = self._get_ipc_km()
79 km = self._get_ipc_km()
79 self._run_cinfo(km, 'ipc', 'test')
80 self._run_cinfo(km, 'ipc', 'test')
General Comments 0
You need to be logged in to leave comments. Login now