diff options
author | Matthias Clasen <mclasen@redhat.com> | 2023-03-19 10:19:00 -0400 |
---|---|---|
committer | Matthias Clasen <mclasen@redhat.com> | 2023-03-19 10:19:00 -0400 |
commit | e7bb7785faf6f6564e3dc417612fda7002c6d503 (patch) | |
tree | 2d9d254f1039360580cfb9d7e776e7e5325e14ed | |
parent | 9705ccbe2f1b1e40b69e813b644666de7e208ba7 (diff) | |
download | gtk+-e7bb7785faf6f6564e3dc417612fda7002c6d503.tar.gz |
testsuite: Improve setup name consistency
Rename the 'waylandgles' test setup to 'wayland_gles'.
-rw-r--r-- | .gitlab-ci.yml | 2 | ||||
-rw-r--r-- | testsuite/meson.build | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 05366da2b2..751beeec02 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -104,7 +104,7 @@ fedora-x86_64: - LD_LIBRARY_PATH=${CI_PROJECT_DIR}/_install/lib64 meson compile -C _build_hello - .gitlab-ci/run-tests.sh _build x11 - .gitlab-ci/run-tests.sh _build wayland - - .gitlab-ci/run-tests.sh _build waylandgles + - .gitlab-ci/run-tests.sh _build wayland_gles - .gitlab-ci/run-tests.sh _build wayland_smalltexture - .gitlab-ci/run-tests.sh _build broadway diff --git a/testsuite/meson.build b/testsuite/meson.build index f39f66322f..2957a42d80 100644 --- a/testsuite/meson.build +++ b/testsuite/meson.build @@ -15,7 +15,7 @@ exclude_unstable = ['flaky', 'failing'] setups = [ { 'backend': 'x11', 'if': x11_enabled, }, { 'backend': 'wayland', 'if': wayland_enabled, 'is_default': true, }, - { 'name': 'waylandgles', + { 'name': 'wayland_gles', 'backend': 'wayland', 'if': wayland_enabled, 'env': ['GDK_DEBUG=gl-gles,default-settings'], }, { 'backend': 'win32', 'if': os_win32 }, |