File: tests-Mark-gltexture-as-expected-to-fail-on-big-endian-ma.patch

package info (click to toggle)
gtk4 4.20.2%2Bds-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 180,224 kB
  • sloc: ansic: 778,743; xml: 3,093; javascript: 3,054; python: 1,911; java: 752; sh: 682; makefile: 315; perl: 162; cpp: 21
file content (24 lines) | stat: -rw-r--r-- 702 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
From: Simon McVittie <smcv@debian.org>
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 | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/testsuite/gdk/meson.build b/testsuite/gdk/meson.build
index 1a2a1fd..b83fb23 100644
--- a/testsuite/gdk/meson.build
+++ b/testsuite/gdk/meson.build
@@ -108,6 +108,10 @@ foreach t : internal_tests
 
   suites = ['gdk'] + t.get('suites', [])
 
+  if host_machine.endian() == 'big' and t.get('name') == 'gltexture'
+    suites += 'failing'
+  endif
+
   test(test_name, test_exe,
     args: [ '--tap', '-k' ],
     protocol: 'tap',