Skip to content

Commit 8e209d2

Browse files
authored
Merge pull request #51 from KhronosGroup/suffix-egl-wgl
Add optional -egl and -wgl suffix
2 parents fb6b771 + cd0cf43 commit 8e209d2

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

verify_es.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -167,6 +167,8 @@ def verifyMustpassCases(report, package, mustpassCases, type):
167167
pattern += "-width-" + cfgItems['width'] + "-height-" + cfgItems['height']
168168
if cfgItems['seed'] != None:
169169
pattern += "-seed-" + cfgItems['seed']
170+
# Append an optional -egl or -wgl suffix (if present)
171+
pattern += r"(-(?:egl|wgl))?"
170172
pattern += ".qpa"
171173
p = re.compile(pattern)
172174
matches = [m for l in mustpassCases[mustpass] for m in (p.match(l),) if m]

0 commit comments

Comments
 (0)