Skip to content

Commit 35aa040

Browse files
committed
Pattern match test names, not numbers to capture test names from Benchmark_O --list
This makes the output of the test more readable.
1 parent 676411f commit 35aa040

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

benchmark/scripts/perf_test_driver/perf_test_driver.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
import subprocess
2222

2323

24-
BENCHMARK_OUTPUT_RE = re.compile('([^,]+),')
24+
BENCHMARK_OUTPUT_RE = re.compile(r'\d+,([^,]+)')
2525

2626

2727
class Result(object):

0 commit comments

Comments
 (0)