mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-01 03:48:06 +02:00
Since GL CTS, GLES CTS, and Piglit executions are very fast compared to the machine setup time, it makes sense to combine them into one boot. The execution will run until the first test suite fails, or we are done with the execution. Reviewed-by: Samuel Pitoiset <samuel.pitoiset@gmail.com> Acked-by: David Heidelberg <david.heidelberg@collabora.com> Signed-off-by: Martin Roukala (né Peres) <martin.roukala@mupuf.org> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/20006>
26 lines
676 B
Bash
Executable file
26 lines
676 B
Bash
Executable file
#!/bin/bash
|
|
|
|
set -eu
|
|
|
|
function execute_testsuite {
|
|
local RESULTS_FOLDER EXEC_DONE_FILE
|
|
|
|
RESULTS_FOLDER="results/$1"
|
|
EXEC_DONE_FILE="$RESULTS_FOLDER/.done"
|
|
|
|
if [ ! -f "$EXEC_DONE_FILE" ]; then
|
|
DEQP_RESULTS_DIR="$RESULTS_FOLDER" PIGLIT_RESULTS_DIR="$RESULTS_FOLDER" $2
|
|
touch "$EXEC_DONE_FILE"
|
|
else
|
|
echo "--> Skipped, as it already was executed"
|
|
fi
|
|
}
|
|
|
|
echo -e "\n# GL CTS testing"
|
|
DEQP_VER=gl46 execute_testsuite gl ./install/deqp-runner.sh
|
|
|
|
echo -e "\n# GLES CTS testing"
|
|
DEQP_SUITE=zink-radv execute_testsuite gles ./install/deqp-runner.sh
|
|
|
|
echo -e "\n# Piglit testing"
|
|
execute_testsuite piglit ./install/piglit/piglit-runner.sh
|