File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -151,6 +151,7 @@ def test_fcntl_64_bit(self):
151151 except OSError as exc :
152152 if exc .errno == errno .EINVAL :
153153 self .skipTest ("F_NOTIFY not available by this environment" )
154+ raise
154155 fcntl .fcntl (fd , cmd , flags )
155156 finally :
156157 os .close (fd )
Original file line number Diff line number Diff line change @@ -469,6 +469,7 @@ def test_search_major_2(self):
469469 except subprocess .CalledProcessError :
470470 if not is_installed ("2.7" ):
471471 raise unittest .SkipTest ("requires at least one Python 2.x install" )
472+ raise
472473 self .assertEqual ("PythonCore" , data ["env.company" ])
473474 self .assertStartsWith (data ["env.tag" ], "2." )
474475
Original file line number Diff line number Diff line change @@ -2870,6 +2870,7 @@ def test_is_socket_true(self):
28702870 if (isinstance (e , PermissionError ) or
28712871 "AF_UNIX path too long" in str (e )):
28722872 self .skipTest ("cannot bind Unix socket: " + str (e ))
2873+ raise
28732874 self .assertTrue (P .is_socket ())
28742875 self .assertFalse (P .is_fifo ())
28752876 self .assertFalse (P .is_file ())
Original file line number Diff line number Diff line change @@ -1427,6 +1427,7 @@ def testIPv6toString(self):
14271427 except OSError as e :
14281428 if e .winerror == 10022 :
14291429 self .skipTest ('IPv6 might not be supported' )
1430+ raise
14301431
14311432 f = lambda a : inet_pton (AF_INET6 , a )
14321433 assertInvalid = lambda a : self .assertRaises (
@@ -1517,6 +1518,7 @@ def testStringToIPv6(self):
15171518 except OSError as e :
15181519 if e .winerror == 10022 :
15191520 self .skipTest ('IPv6 might not be supported' )
1521+ raise
15201522
15211523 f = lambda a : inet_ntop (AF_INET6 , a )
15221524 assertInvalid = lambda a : self .assertRaises (
You can’t perform that action at this time.
0 commit comments