From 93b55b2d2c62f7f5fa23dc606eff7580e236a5f6 Mon Sep 17 00:00:00 2001 From: =?utf8?q?=C3=89tienne=20Mollier?= Date: Thu, 14 May 2026 19:57:27 +0200 Subject: [PATCH] skip test failure on big endian systems. Bug: https://lists.debian.org/debian-med/2026/02/msg00018.html Bug-Debian: https://bugs.debian.org/1127756#25 Forwarded: not-needed. Last-Update: 2026-02-17 The issue is known upstream and supposed to be fixed in an upcoming version. Last-Update: 2026-02-17 Gbp-Pq: Name skip-bigendian-roundtrip-failure.patch --- dcmect/tests/t_roundtrip.cc | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/dcmect/tests/t_roundtrip.cc b/dcmect/tests/t_roundtrip.cc index 3d05322b..8bc0462b 100644 --- a/dcmect/tests/t_roundtrip.cc +++ b/dcmect/tests/t_roundtrip.cc @@ -94,6 +94,13 @@ OFTEST(dcmect_roundtrip) 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); -- 2.30.2