Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion bin/testcode.py
Original file line number Diff line number Diff line change
Expand Up @@ -351,7 +351,7 @@ def run_test_worker(semaphore, semaphore_lock, tests, *run_test_args):
# patterns in the output file--otherwise we can't figure out which
# output file belongs to which test. We might be able to for some
# wildcards, but let's err on the side of caution.
wildcards = re.compile('.*(\*|\?|\[.*\]).*')
wildcards = re.compile(r'.*(\*|\?|\[.*\]).*')
serialized_tests = []
test_store = {}
for test in tests:
Expand Down