ci: Support desktop GL tests

Add test script flags to run desktop GL 3.0, 3.1 and 3.2 tests.

Signed-off-by: Alexandros Frantzis <alexandros.frantzis@collabora.com>
Reviewed-by: <Gurchetan Singh gurchetansingh@chromium.org>
Reviewed-By: Gert Wollny <gert.wollny@collabora.com>
macos/master
Alexandros Frantzis 6 years ago committed by Gert Wollny
parent c47c1f45d4
commit 56739adad5
  1. 27
      ci/run_test_suite.sh

@ -82,6 +82,18 @@ parse_input()
TESTS="$TESTS gles31"
;;
--gl30)
TESTS="$TESTS gl30"
;;
--gl31)
TESTS="$TESTS gl31"
;;
--gl32)
TESTS="$TESTS gl32"
;;
-d|--deqp)
TEST_APP="deqp"
;;
@ -468,6 +480,21 @@ run_all_tests()
TEST_FILE="$CTS_PATH/android/cts/master/gles31-master.txt"
;;
gl30)
TEST_NAME="gl30"
TEST_FILE="$CTS_PATH/external/openglcts/data/mustpass/gl/khronos_mustpass/4.6.1.x/gl30-master.txt"
;;
gl31)
TEST_NAME="gl31"
TEST_FILE="$CTS_PATH/external/openglcts/data/mustpass/gl/khronos_mustpass/4.6.1.x/gl31-master.txt"
;;
gl32)
TEST_NAME="gl32"
TEST_FILE="$CTS_PATH/external/openglcts/data/mustpass/gl/khronos_mustpass/4.6.1.x/gl32-master.txt"
;;
*)
echo "Invalid test: $TEST"
exit 1

Loading…
Cancel
Save