From 737012207d6d717ac8e637881871714a3d292d60 Mon Sep 17 00:00:00 2001 From: Simon McVittie Date: Tue, 22 Aug 2023 11:57:36 +0100 Subject: [PATCH] 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 --- 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 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 -- 2.30.2