File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -3398,7 +3398,7 @@ def test_vfork_used_when_expected(self):
33983398 _run_using_command = strace_command ,
33993399 )
34003400 # Match both vfork() and clone(..., flags=...|CLONE_VFORK|...)
3401- self .assertRegex (vfork_result .err , br"(?mi)^ vfork" )
3401+ self .assertRegex (vfork_result .err , br"(?mi)vfork" )
34023402 # Do NOT check that fork() or other clones did not happen.
34033403 # If the OS denys the vfork it'll fallback to plain fork().
34043404
@@ -3426,7 +3426,7 @@ def test_vfork_used_when_expected(self):
34263426 _run_using_command = strace_command ,
34273427 )
34283428 # Ensure neither vfork() or clone(..., flags=...|CLONE_VFORK|...).
3429- self .assertNotRegex (non_vfork_result .err , br"(?mi)^ vfork" )
3429+ self .assertNotRegex (non_vfork_result .err , br"(?mi)vfork" )
34303430
34313431
34323432@unittest .skipUnless (mswindows , "Windows specific tests" )
You can’t perform that action at this time.
0 commit comments