summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJordan Justen <jordan.l.justen@intel.com>2018-09-27 01:56:19 -0700
committerJordan Justen <jordan.l.justen@intel.com>2018-09-27 02:14:52 -0700
commitf221f9835543493b4e49f5f80f6701a6ac9b21b0 (patch)
tree9335fecec106761feac160e68de94054b3a7cf44
parentb619da877e584780f1e8a8278335f09a32a97edd (diff)
sanity: Don't add generated_tests since they are built later
Fixes: f07e9df45 "sanity: Add various shader_runner tests" Reported-by: Mark Janes <mark.a.janes@intel.com> Signed-off-by: Jordan Justen <jordan.l.justen@intel.com>
-rw-r--r--tests/sanity.py18
1 files changed, 18 insertions, 0 deletions
diff --git a/tests/sanity.py b/tests/sanity.py
index a83eb2da5..6ba80ccbc 100644
--- a/tests/sanity.py
+++ b/tests/sanity.py
@@ -67,10 +67,28 @@ def add_shader_test(shader):
profile = TestProfile()
shader_tests = (
+ 'tests/fast_color_clear/all-colors.shader_test',
+ 'tests/shaders/arb_texture_gather-miplevels.shader_test',
'tests/shaders/glsl-algebraic-add-zero.shader_test',
+ 'tests/shaders/glsl-derivs-varyings.shader_test',
+ 'tests/shaders/glsl-fs-max-3.shader_test',
+ 'tests/shaders/glsl-fs-texture2d-branching.shader_test',
+ 'tests/shaders/glsl-vs-mat-mul-1.shader_test',
+ 'tests/spec/arb_arrays_of_arrays/execution/image_store/basic-imageStore-mixed-const-non-const-uniform-index.shader_test',
+ 'tests/spec/arb_arrays_of_arrays/execution/sampler/vs-struct-nonconst.shader_test',
'tests/spec/arb_compute_shader/execution/basic-ssbo.shader_test',
+ 'tests/spec/arb_compute_shader/execution/shared-atomics.shader_test',
+ 'tests/spec/arb_derivative_control/execution/dfdx-dfdy.shader_test',
+ 'tests/spec/arb_gpu_shader5/execution/built-in-functions/fs-bitfieldReverse.shader_test',
+ 'tests/spec/arb_shader_ballot/execution/fs-readFirstInvocation-uint-loop.shader_test',
+ 'tests/spec/arb_shader_group_vote/cs-all.shader_test',
+ 'tests/spec/arb_shader_image_load_store/execution/write-to-rendered-image.shader_test',
+ 'tests/spec/arb_shader_subroutine/execution/two-subroutines-nested.shader_test',
+ 'tests/spec/arb_shader_texture_lod/execution/glsl-fs-shadow2DGradARB-cumulative.shader_test',
+ 'tests/spec/arb_tessellation_shader/execution/barrier-patch.shader_test',
'tests/spec/arb_tessellation_shader/execution/sanity.shader_test',
'tests/spec/glsl-1.50/execution/geometry-basic.shader_test',
+ 'tests/spec/oes_viewport_array/viewport-gs-write-simple.shader_test',
)
for shader_test in shader_tests: