mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-01-02 18:10:17 +01:00
radeonsi/tests: add testing of the khr-single tests
This is similar to what's done in !17876. KHR-Single-GL46.arrays_of_arrays_gl.AtomicUsage is only executed when --slow is used because it takes about 200 seconds. Reviewed-by: Ganesh Belgur Ramachandra <ganesh.belgurramachandra@amd.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/17907>
This commit is contained in:
parent
62d3f799de
commit
4d7637bb73
1 changed files with 6 additions and 1 deletions
|
|
@ -257,7 +257,7 @@ spin = itertools.cycle("-\\|/")
|
|||
shutil.copy(skips, output_folder)
|
||||
skips = os.path.join(output_folder, "skips.csv")
|
||||
if not args.slow:
|
||||
# Exclude these 3 tests slow tests
|
||||
# Exclude these 4 tests slow tests
|
||||
with open(skips, "a") as f:
|
||||
print("KHR-GL46.copy_image.functional", file=f)
|
||||
print("KHR-GL46.texture_swizzle.smoke", file=f)
|
||||
|
|
@ -265,6 +265,7 @@ if not args.slow:
|
|||
"KHR-GL46.tessellation_shader.tessellation_control_to_tessellation_evaluation.gl_MaxPatchVertices_Position_PointSize",
|
||||
file=f,
|
||||
)
|
||||
print("KHR-Single-GL46.arrays_of_arrays_gl.AtomicUsage", file=f)
|
||||
|
||||
|
||||
def gfx_level_to_str(cl):
|
||||
|
|
@ -426,6 +427,10 @@ if args.glcts:
|
|||
"{}/external/openglcts/modules/gl_cts/data/mustpass/gl/khronos_mustpass/4.6.1.x/gl46-master.txt".format(
|
||||
glcts_path
|
||||
),
|
||||
"--caselist",
|
||||
"{}/external/openglcts/modules/gl_cts/data/mustpass/gl/khronos_mustpass_single/4.6.1.x/gl46-khr-single.txt".format(
|
||||
glcts_path
|
||||
),
|
||||
"--output",
|
||||
out,
|
||||
"--skips",
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue