Search found 6 matches

by alciregi
Tue, 2021-08-03, 13:54
Forum: DCMTK - Installation
Topic: Endianess problem with dcmseg_roundtrip test
Replies: 9
Views: 8874

Re: Endianess problem with dcmseg_roundtrip test

Yes.
Using this patch http://git.dcmtk.org/?p=dcmtk.git;a=com ... a348922bc6 now the test passes successfully.
Thanks!
by alciregi
Tue, 2021-08-03, 10:54
Forum: DCMTK - Installation
Topic: Endianess problem with dcmseg_roundtrip test
Replies: 9
Views: 8874

Re: Endianess problem with dcmseg_roundtrip test

Michael Onken wrote: Tue, 2021-08-03, 10:47 Hi, the related commits are now public on DCMTK master. It would be great if you could try this out in the next days.
Thank you very much.
I will try ASAP.
by alciregi
Fri, 2021-07-30, 09:55
Forum: DCMTK - Installation
Topic: Endianess problem with dcmseg_roundtrip test
Replies: 9
Views: 8874

Re: Endianess problem with dcmseg_roundtrip test

Indeed, if I use

Code: Select all

            OFCHECK(__bswap_16(frame[pix]) == numInstance + 1);
on line 622, it works.
by alciregi
Fri, 2021-07-30, 08:03
Forum: DCMTK - Installation
Topic: Endianess problem with dcmseg_roundtrip test
Replies: 9
Views: 8874

Re: Endianess problem with dcmseg_roundtrip test

So, debugging a little, it seems that

Code: Select all

frame[pix] == numInstance + 1
is

Code: Select all

256 == 1
and

Code: Select all

512 == 2
by alciregi
Thu, 2021-07-29, 15:08
Forum: DCMTK - Installation
Topic: Endianess problem with dcmseg_roundtrip test
Replies: 9
Views: 8874

Re: Endianess problem with dcmseg_roundtrip test

Thank you for the answer. I applied the patch. I'm still able to compile for the various architectures; for x360s the dcmseg_roundtrip test now passes, but dcmect_roundtrip still fails. 261/263 Test #263: dcmect_roundtrip .............................................***Failed 0.05 sec FAILED test 'd...
by alciregi
Wed, 2021-07-28, 13:24
Forum: DCMTK - Installation
Topic: Endianess problem with dcmseg_roundtrip test
Replies: 9
Views: 8874

Endianess problem with dcmseg_roundtrip test

Hello. I'm trying to create an RPM package using the Fedora build infrastructure. While dcmtk 3.6.6 builds successfully and all the tests pass on various architectures (i.e. x86_64, aarch64, ppc64le, etc.) I encountered a problem with s390x. The dcmseg_roundtrip and dcmect_roundtrip tests fail, beca...