diff options
author | Tomeu Vizoso <[email protected]> | 2019-06-21 08:10:57 +0200 |
---|---|---|
committer | Tomeu Vizoso <[email protected]> | 2019-06-21 10:45:12 +0200 |
commit | 1cbe2ad39442a48b96fff40a3a30c74ac5e4e4e6 (patch) | |
tree | 7beb17f25d486d0faac0527654130ee1e6e188a3 /src/gallium/drivers/panfrost/ci | |
parent | ef4429d9c5cfa33ca8d468182e1085f655609341 (diff) |
panfrost: ci: Exclude two more flip-flop from results
These three tests pass on RK3399, but fail on RK3288:
dEQP-GLES2.functional.shaders.matrix.div.const_lowp_mat2_mat2_vertex
dEQP-GLES2.functional.shaders.operator.unary_operator.pre_increment_effect.highp_ivec4_vertex
dEQP-GLES2.functional.shaders.texture_functions.vertex.texture2dprojlod_vec3
They reliably pass when run individually, but reliably fail when run in
a full CI run.
Signed-off-by: Tomeu Vizoso <[email protected]>
Diffstat (limited to 'src/gallium/drivers/panfrost/ci')
-rw-r--r-- | src/gallium/drivers/panfrost/ci/gitlab-ci.yml | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/gallium/drivers/panfrost/ci/gitlab-ci.yml b/src/gallium/drivers/panfrost/ci/gitlab-ci.yml index e1035e0fdff..956ad89e820 100644 --- a/src/gallium/drivers/panfrost/ci/gitlab-ci.yml +++ b/src/gallium/drivers/panfrost/ci/gitlab-ci.yml @@ -221,6 +221,9 @@ build:arm64: FLIP_FLOPS="$FLIP_FLOPS dEQP-GLES2.functional.fragment_ops.blend.* dEQP-GLES2.functional.shaders.builtin_variable.max_draw_buffers_vertex + dEQP-GLES2.functional.shaders.matrix.div.const_lowp_mat2_mat2_vertex + dEQP-GLES2.functional.shaders.operator.unary_operator.pre_increment_effect.highp_ivec4_vertex + dEQP-GLES2.functional.shaders.texture_functions.vertex.texture2dprojlod_vec3 " - for test in $FLIP_FLOPS; do sed -i "/$test/d" results/expected-failures.txt results/results-$lava_job_id.csv; done @@ -231,7 +234,7 @@ build:arm64: - 'echo "Passed: $PASSED ($(expr $PASSED \* 100 / $TOTAL)%)"' - 'echo "Failed: $FAILED ($(expr $FAILED \* 100 / $TOTAL)%)"' - 'echo "Total: $TOTAL"' - - 'if [ $TOTAL != 16372 ]; then echo "WARNING: Unexpected count of results. Incomplete run?"; fi' + - 'if [ $TOTAL != 16374 ]; then echo "WARNING: Unexpected count of results. Incomplete run?"; fi' - sed '/,pass/d' results/results-$lava_job_id.csv | sed 's/,fail//' > results/failures-$lava_job_id.txt - diff -u results/expected-failures.txt results/failures-$lava_job_id.txt |