# HG changeset patch # User Pierre-Yves David # Date 2019-08-09 11:11:27 # Node ID 2c1a484ce4d469fa062166ed63e660efc3142d7d # Parent 978c9a0c5974a6049c639b4b2c712978af034455 test: further fixes to matching for run-tests.py bug The fix in bac24a8a095a did not fix the full issue, because the extra number also eat some of the separator space. Since we are already matching arbitrary number of space, we easily fix the matching. diff --git a/tests/test-run-tests.t b/tests/test-run-tests.t --- a/tests/test-run-tests.t +++ b/tests/test-run-tests.t @@ -1030,7 +1030,7 @@ test for --time # Ran 1 tests, 0 skipped, 0 failed. # Producing time report start end cuser csys real Test - \s*[\d\.]{5,8} \s*[\d\.]{5,8} \s*[\d\.]{5,8} \s*[\d\.]{5,8} \s*[\d\.]{5,8} test-success.t (re) + \s*[\d\.]{5,8} \s*[\d\.]{5,8} \s*[\d\.]{5,8} \s*[\d\.]{5,8} \s*[\d\.]{5,8} test-success.t (re) test for --time with --job enabled ==================================== @@ -1041,7 +1041,7 @@ test for --time with --job enabled # Ran 1 tests, 0 skipped, 0 failed. # Producing time report start end cuser csys real Test - \s*[\d\.]{5,8} \s*[\d\.]{5,8} \s*[\d\.]{5,8} \s*[\d\.]{5,8} \s*[\d\.]{5,8} test-success.t (re) + \s*[\d\.]{5,8} \s*[\d\.]{5,8} \s*[\d\.]{5,8} \s*[\d\.]{5,8} \s*[\d\.]{5,8} test-success.t (re) Skips ================