From: Simon McVittie Date: Tue, 22 Aug 2023 10:57:36 +0000 (+0100) Subject: tests: Mark gltexture as expected to fail on big-endian machines X-Git-Tag: archive/raspbian/4.12.3+ds-1+rpi1~1^2~2 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=f8d5d5d8020935961fc34d7e42e1705df2762f79;p=gtk4.git tests: Mark gltexture as expected to fail on big-endian machines Forwarded: not-needed, workaround Gbp-Pq: Topic debian Gbp-Pq: Name tests-Mark-gltexture-as-expected-to-fail-on-big-endian-ma.patch --- diff --git a/testsuite/gdk/meson.build b/testsuite/gdk/meson.build index 92dc6abe7f..842e1aba93 100644 --- a/testsuite/gdk/meson.build +++ b/testsuite/gdk/meson.build @@ -69,6 +69,12 @@ foreach t : internal_tests install_dir: testexecdir, ) + suites = ['gdk'] + + if host_machine.endian() == 'big' and t == 'gltexture' + suites += 'failing' + endif + test(t, test_exe, args: [ '--tap', '-k' ], protocol: 'tap', @@ -77,7 +83,7 @@ foreach t : internal_tests 'G_TEST_BUILDDIR=@0@'.format(meson.current_build_dir()), 'DBUS_SESSION_BUS_ADDRESS=', ], - suite: 'gdk', + suite: suites, ) endforeach