From: Étienne Mollier Date: Wed, 18 Feb 2026 20:21:56 +0000 (+0100) Subject: skip-bigendian-roundtrip-failure.patch: new: skip test failure on s390x. X-Git-Tag: archive/raspbian/3.7.0+really3.7.0-1+rpi1^2~13 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=492901d7e132058f1dd24cc1e260d86b57243660;p=dcmtk.git skip-bigendian-roundtrip-failure.patch: new: skip test failure on s390x. The correction is work in progress upstream. --- diff --git a/debian/patches/series b/debian/patches/series index 8634d570..cbb0b1ed 100644 --- a/debian/patches/series +++ b/debian/patches/series @@ -2,3 +2,4 @@ #03_datadic_install.patch 07_dont_export_all_executables.patch remove_version.patch +skip-bigendian-roundtrip-failure.patch diff --git a/debian/patches/skip-bigendian-roundtrip-failure.patch b/debian/patches/skip-bigendian-roundtrip-failure.patch new file mode 100644 index 00000000..ba03d389 --- /dev/null +++ b/debian/patches/skip-bigendian-roundtrip-failure.patch @@ -0,0 +1,26 @@ +Description: skip test failure on big endian systems. + The issue is known upstream and supposed to be fixed in an upcoming + version. +Author: Étienne Mollier +Bug: https://lists.debian.org/debian-med/2026/02/msg00018.html +Bug-Debian: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1127756#25 +Forwarded: not-needed. +Last-Update: 2026-02-17 +--- +This patch header follows DEP-3: http://dep.debian.net/deps/dep3/ +--- dcmtk.orig/dcmect/tests/t_roundtrip.cc ++++ dcmtk/dcmect/tests/t_roundtrip.cc +@@ -94,6 +94,13 @@ + return; + } + ++ /* Skip that particular test on big endian due to know issue in ++ * version 3.7.0. This is going to be fixed in a future version. ++ */ ++ if (gLocalByteOrder != EBO_LittleEndian) { ++ return; ++ } ++ + // Creation + EctEnhancedCT* ct = create(); + configureIOD(ct);