mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2024-12-03 07:04:02 +08:00
576f7b6ea5
One job for the quick_gl profile, one for the glslparser & quick_shader profiles (doing these together takes hardly any more time than quick_shader alone). v2: * Don't break lava tests v3: * Remove piglit test artifacts paths: * Exclude some quick_shader tests again: - Test whose result flips between pass/fail/skip - *@vs_in tests, as not the same one of these gets picked every time v4: * Do not list passing tests in .gitlab-ci/piglit/*.txt (Eric Anholt) * Include the test number summary in .gitlab-ci/piglit/*.txt * Completely disable generating any vs_in tests in the piglit build. * Remove some more unneded files from the piglit build tree. * Exclude quick_gl arb_gpu_shader5 tests; they were all skipped anyway, as llvmpipe doesn't support this extension yet, but occasionally they would spuriously fail instead. v5: * Set LD_LIBRARY_PATH, so we actually test the Mesa build from the pipeline... * Verify that wflinfo reports the expected Mesa version * Pass -noreset to Xvfb v6: * Don't use autoscale runners, run piglit with -j4 (Eric Anholt) Reviewed-by: Eric Anholt <eric@anholt.net>
37 lines
1.5 KiB
Diff
37 lines
1.5 KiB
Diff
diff --git a/generated_tests/CMakeLists.txt b/generated_tests/CMakeLists.txt
|
|
index 738526546..6f89048cd 100644
|
|
--- a/generated_tests/CMakeLists.txt
|
|
+++ b/generated_tests/CMakeLists.txt
|
|
@@ -206,11 +206,6 @@ piglit_make_generated_tests(
|
|
templates/gen_variable_index_write_tests/vs.shader_test.mako
|
|
templates/gen_variable_index_write_tests/fs.shader_test.mako
|
|
templates/gen_variable_index_write_tests/helpers.mako)
|
|
-piglit_make_generated_tests(
|
|
- vs_in_fp64.list
|
|
- gen_vs_in_fp64.py
|
|
- templates/gen_vs_in_fp64/columns.shader_test.mako
|
|
- templates/gen_vs_in_fp64/regular.shader_test.mako)
|
|
piglit_make_generated_tests(
|
|
shader_framebuffer_fetch_tests.list
|
|
gen_shader_framebuffer_fetch_tests.py)
|
|
@@ -279,7 +274,6 @@ add_custom_target(gen-gl-tests
|
|
gen_extensions_defined.list
|
|
vp-tex.list
|
|
variable_index_write_tests.list
|
|
- vs_in_fp64.list
|
|
gpu_shader4_tests.list
|
|
)
|
|
|
|
diff --git a/tests/sanity.py b/tests/sanity.py
|
|
index 12f1614c9..9019087e2 100644
|
|
--- a/tests/sanity.py
|
|
+++ b/tests/sanity.py
|
|
@@ -100,7 +100,6 @@ shader_tests = (
|
|
'spec/arb_tessellation_shader/execution/barrier-patch.shader_test',
|
|
'spec/arb_tessellation_shader/execution/built-in-functions/tcs-any-bvec4-using-if.shader_test',
|
|
'spec/arb_tessellation_shader/execution/sanity.shader_test',
|
|
- 'spec/arb_vertex_attrib_64bit/execution/vs_in/vs-input-uint_uvec4-double_dmat3x4_array2-position.shader_test',
|
|
'spec/glsl-1.50/execution/geometry-basic.shader_test',
|
|
'spec/oes_viewport_array/viewport-gs-write-simple.shader_test',
|
|
)
|