From: Simon McVittie Date: Tue, 22 Aug 2023 10:59:02 +0000 (+0100) Subject: Ignore another test failure on big-endian machines X-Git-Tag: archive/raspbian/4.12.3+ds-1+rpi1~1^2^2^2~44 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=f0cf4fb2f6da3bdac3a47a5f8ccae509616ca9ae;p=gtk4.git Ignore another test failure on big-endian machines Similar to #1024391. --- diff --git a/debian/patches/debian/tests-Mark-gltexture-as-expected-to-fail-on-big-endian-ma.patch b/debian/patches/debian/tests-Mark-gltexture-as-expected-to-fail-on-big-endian-ma.patch new file mode 100644 index 0000000000..84bec8a83f --- /dev/null +++ b/debian/patches/debian/tests-Mark-gltexture-as-expected-to-fail-on-big-endian-ma.patch @@ -0,0 +1,35 @@ +From: Simon McVittie +Date: Tue, 22 Aug 2023 11:57:36 +0100 +Subject: tests: Mark gltexture as expected to fail on big-endian machines + +Forwarded: not-needed, workaround +--- + testsuite/gdk/meson.build | 8 +++++++- + 1 file changed, 7 insertions(+), 1 deletion(-) + +diff --git a/testsuite/gdk/meson.build b/testsuite/gdk/meson.build +index 92dc6ab..842e1ab 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 + diff --git a/debian/patches/series b/debian/patches/series index 2ca21b4756..e7880ccb3d 100644 --- a/debian/patches/series +++ b/debian/patches/series @@ -11,3 +11,4 @@ debian/subprojects-Add-gst-player-1.0-as-subporject.patch debian/gstreamer-player-1.0-Do-not-install-it-if-it-s-a-subproje.patch debian/media-Use-gstplayer-from-meson-subproject.patch debian/gstreamer-player-Use-GtkName-Prefix-to-avoid-issues-if-ac.patch +debian/tests-Mark-gltexture-as-expected-to-fail-on-big-endian-ma.patch