Skip to content

Commit

Permalink
Merge pull request #47 from cwabbott0/fix-fraction
Browse files Browse the repository at this point in the history
Fix recognizing fractional logs with more than 9 fractions
  • Loading branch information
lordalcol authored Oct 24, 2024
2 parents 5394879 + 11b7d20 commit bbd213a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion package.py
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ def getPackageDescription (report, verification):
if reobj.match(log) == None:
report.failure("Test log name does not conform to --deqp-fraction option", log)
for log in testLogs:
prefix = re.split("(\d-of-\d)+", log)[0]
prefix = re.split("(\d+-of-\d+)+", log)[0]
if prefix in testLogsFraction:
fractionLogs = testLogsFraction[prefix]
else:
Expand Down

0 comments on commit bbd213a

Please sign in to comment.