@@ -1018,12 +1018,16 @@ def test_run(self):
1018
1018
stats = TestStats (4 , 1 ),
1019
1019
forever = True )
1020
1020
1021
- def check_leak (self , code , what ):
1021
+ def check_leak (self , code , what , * , multiprocessing = False ):
1022
1022
test = self .create_test ('huntrleaks' , code = code )
1023
1023
1024
1024
filename = 'reflog.txt'
1025
1025
self .addCleanup (os_helper .unlink , filename )
1026
- output = self .run_tests ('--huntrleaks' , '6:3:' , test ,
1026
+ cmd = ['--huntrleaks' , '6:3:' ]
1027
+ if multiprocessing :
1028
+ cmd .append ('-j1' )
1029
+ cmd .append (test )
1030
+ output = self .run_tests (* cmd ,
1027
1031
exitcode = EXITCODE_BAD_TEST ,
1028
1032
stderr = subprocess .STDOUT )
1029
1033
self .check_executed_tests (output , [test ], failed = test , stats = 1 )
@@ -1039,7 +1043,7 @@ def check_leak(self, code, what):
1039
1043
self .assertIn (line2 , reflog )
1040
1044
1041
1045
@unittest .skipUnless (support .Py_DEBUG , 'need a debug build' )
1042
- def test_huntrleaks (self ):
1046
+ def check_huntrleaks (self , * , multiprocessing : bool ):
1043
1047
# test --huntrleaks
1044
1048
code = textwrap .dedent ("""
1045
1049
import unittest
@@ -1050,7 +1054,13 @@ class RefLeakTest(unittest.TestCase):
1050
1054
def test_leak(self):
1051
1055
GLOBAL_LIST.append(object())
1052
1056
""" )
1053
- self .check_leak (code , 'references' )
1057
+ self .check_leak (code , 'references' , multiprocessing = multiprocessing )
1058
+
1059
+ def test_huntrleaks (self ):
1060
+ self .check_huntrleaks (multiprocessing = False )
1061
+
1062
+ def test_huntrleaks_mp (self ):
1063
+ self .check_huntrleaks (multiprocessing = True )
1054
1064
1055
1065
@unittest .skipUnless (support .Py_DEBUG , 'need a debug build' )
1056
1066
def test_huntrleaks_fd_leak (self ):
0 commit comments