File tree Expand file tree Collapse file tree
Lib/test/test_concurrent_futures Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -147,6 +147,8 @@ def test_spawn(self):
147147 self ._test (ProcessPoolSpawnFailingInitializerTest )
148148
149149 @support .skip_if_sanitizer ("TSAN doesn't support threads after fork" , thread = True )
150+ @unittest .skipIf (sys .platform == "cygwin" ,
151+ "Forkserver is not available on Cygwin" )
150152 def test_forkserver (self ):
151153 self ._test (ProcessPoolForkserverFailingInitializerTest )
152154
Original file line number Diff line number Diff line change @@ -135,7 +135,7 @@ def get_context(self):
135135 _check_system_limits ()
136136 except NotImplementedError :
137137 self .skipTest ("ProcessPoolExecutor unavailable on this system" )
138- if sys .platform == "win32" :
138+ if sys .platform in ( "win32" , "cygwin" ) :
139139 self .skipTest ("require unix system" )
140140 if support .check_sanitizer (thread = True ):
141141 self .skipTest ("TSAN doesn't support threads after fork" )
You can’t perform that action at this time.
0 commit comments