Lines Matching +full:- +full:- +full:exclude
1 # -*- coding: utf-8 -*-
3 #-------------------------------------------------------------------------
5 # --------------------------------------
13 # http://www.apache.org/licenses/LICENSE-2.0
21 #-------------------------------------------------------------------------
85 'dEQP-EGL': GLESVersion(2,0),
86 'dEQP-GLES2': GLESVersion(2,0),
87 'dEQP-GLES3': GLESVersion(3,0),
88 'dEQP-GLES31': GLESVersion(3,1)
99 assert module.name[:5] == "dEQP-"
103 return "%s-%s.txt" % (getModuleShorthand(package.module), configuration.name)
112 …return "--deqp-gl-config-name=%s --deqp-screen-rotation=%s --deqp-surface-type=%s --deqp-watchdog=…
216 for component in components[:-1]:
223 if not findChild(curNode, components[-1]):
224 curNode.children.append(TestCase(components[-1]))
251 def exclude (filename): function
255 uglyString = ElementTree.tostring(doc, 'utf-8')
257 return reparsed.toprettyxml(indent='\t', encoding='utf-8')
376 EGL_MODULE = Module(name = "dEQP-EGL", dirName = "egl", binName = "deqp-egl")
377 GLES2_MODULE = Module(name = "dEQP-GLES2", dirName = "gles2", binName = "deqp-gles2")
378 GLES3_MODULE = Module(name = "dEQP-GLES3", dirName = "gles3", binName = "deqp-gles3")
379 GLES31_MODULE = Module(name = "dEQP-GLES31", dirName = "gles31", binName = "deqp-gles31")
386 filters = [include("es30-lmp.txt")]),
393 filters = [include("es31-lmp.txt")]),
401 filters = [include("es30-lmp-mr1.txt")]),
408 filters = [include("es31-lmp-mr1.txt")]),
411 MASTER_EGL_COMMON_FILTERS = [include("egl-master.txt"), exclude("egl-failures.txt")]
422 include("gles2-master.txt"),
423 exclude("gles2-test-issues.txt"),
424 exclude("gles2-failures.txt")
436 include("gles3-master.txt"),
437 exclude("gles3-hw-issues.txt"),
438 exclude("gles3-driver-issues.txt"),
439 exclude("gles3-test-issues.txt"),
440 exclude("gles3-spec-issues.txt")
450 Configuration(name = "rotate-portrait",
454 filters = MASTER_GLES3_COMMON_FILTERS + [include("gles3-rotation.txt")]),
455 Configuration(name = "rotate-landscape",
459 filters = MASTER_GLES3_COMMON_FILTERS + [include("gles3-rotation.txt")]),
460 Configuration(name = "rotate-reverse-portrait",
464 filters = MASTER_GLES3_COMMON_FILTERS + [include("gles3-rotation.txt")]),
465 Configuration(name = "rotate-reverse-landscape",
469 filters = MASTER_GLES3_COMMON_FILTERS + [include("gles3-rotation.txt")]),
476 filters = MASTER_GLES3_COMMON_FILTERS + [include("gles3-multisample.txt"),
477 exclude("gles3-multisample-issues.txt")]),
480 Configuration(name = "565-no-depth-no-stencil",
484 filters = MASTER_GLES3_COMMON_FILTERS + [include("gles3-pixelformat.txt"),
485 exclude("gles3-pixelformat-issues.txt")]),
489 include("gles31-master.txt"),
490 exclude("gles31-hw-issues.txt"),
491 exclude("gles31-driver-issues.txt"),
492 exclude("gles31-test-issues.txt"),
493 exclude("gles31-spec-issues.txt"),
504 Configuration(name = "rotate-portrait",
508 filters = MASTER_GLES31_COMMON_FILTERS + [include("gles31-rotation.txt")]),
509 Configuration(name = "rotate-landscape",
513 filters = MASTER_GLES31_COMMON_FILTERS + [include("gles31-rotation.txt")]),
514 Configuration(name = "rotate-reverse-portrait",
518 filters = MASTER_GLES31_COMMON_FILTERS + [include("gles31-rotation.txt")]),
519 Configuration(name = "rotate-reverse-landscape",
523 filters = MASTER_GLES31_COMMON_FILTERS + [include("gles31-rotation.txt")]),
530 filters = MASTER_GLES31_COMMON_FILTERS + [include("gles31-multisample.txt")]),
533 Configuration(name = "565-no-depth-no-stencil",
537 filters = MASTER_GLES31_COMMON_FILTERS + [include("gles31-pixelformat.txt")]),
542 Mustpass(version = "lmp-mr1", packages = [LMP_MR1_GLES3_PKG, LMP_MR1_GLES31_PKG]),