Re: [patch,testsuite] Rectify some tests

2024-12-03 Thread Mike Stump
On Dec 3, 2024, at 3:08 AM, Georg-Johann Lay wrote: > > This patch fixes some unrelated tests that were failing. > In most cases, bad tests are slipping in because they > are preprocessed like: > > size_t -> long unsigned int -> breaks when size_t is smaller etc. > > Other reason is that they a

[patch,testsuite] Rectify some tests

2024-12-03 Thread Georg-Johann Lay
This patch fixes some unrelated tests that were failing. In most cases, bad tests are slipping in because they are preprocessed like: size_t -> long unsigned int -> breaks when size_t is smaller etc. Other reason is that they assume int is > 16 bits. Unfortunately, in many cases it's not known