File: debug-test-failure

package info (click to toggle)
glade 3.40.0-6
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 23,336 kB
  • sloc: ansic: 75,618; xml: 5,397; sh: 48; makefile: 26; python: 13; javascript: 10
file content (17 lines) | stat: -rwxr-xr-x 352 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/bin/sh

set -eu

find obj-*/meson-logs -name testlog*.txt -exec head -n-0 -v '{}' ';'

case "$DEB_HOST_ARCH" in
	(amd64 | arm64 | armhf | mips64el | mipsel | ppc64el | s390x | riscv64)
		exit 1
		;;

	(*)
		echo "Assuming tests are failing due to gjs being disabled"
		echo "See https://gitlab.gnome.org/GNOME/glade/-/issues/495"
		exit 0
		;;
esac