regression: fix infinite loop in testspec.py.

This commit is contained in:
Japheth Lim 2015-09-30 15:37:07 +10:00
parent 59e61472cf
commit 683fd8fbb1
1 changed files with 1 additions and 0 deletions

View File

@ -234,6 +234,7 @@ def process_tests(tests, strict=False):
proposed_name = "%s_%d" % (t.name, x)
if not proposed_name in seen_names:
t.name = proposed_name
break
seen_names.add(t.name)
# Check dependencies.