From: Simon McVittie Date: Tue, 6 Dec 2022 10:59:33 +0000 (+0000) Subject: test-sysroot: Skip on s390x by default X-Git-Tag: archive/raspbian/2024.8-1+rpi1^2^2^2^2^2^2^2^2~2 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=69ce99e953309a100b80845426b568ed99541bad;p=ostree.git test-sysroot: Skip on s390x by default This test regularly fails on the buildds, but I cannot reproduce the failure on a porterbox. Bug: https://github.com/ostreedev/ostree/issues/2527 Bug-Debian: https://bugs.debian.org/1025532 Forwarded: not-needed Gbp-Pq: Topic debian Gbp-Pq: Name test-sysroot-Skip-on-s390x-by-default.patch --- diff --git a/tests/test-sysroot.js b/tests/test-sysroot.js index d4f67ef4..0855b3d7 100755 --- a/tests/test-sysroot.js +++ b/tests/test-sysroot.js @@ -38,6 +38,11 @@ function libtestExec(shellCode) { proc.wait_check(null); } +if (GLib.getenv('DEB_HOST_ARCH') === 's390x' && !GLib.getenv('DEB_ALLOW_FLAKY_TESTS')) { + print('1..0 # SKIP https://bugs.debian.org/1025532'); + imports.system.exit(0); +} + print('1..1') libtestExec('setup_os_repository archive syslinux');