Re: [PATCH] meson: add tests option

2021-03-03 Thread Paolo Bonzini
On 02/03/21 22:14, Romain Naour wrote: I disagree, without a use case the right thing to do is to check for fenv.h. It's as easy as this: Is it ok if I take your patch to disable fp tests when fenv.h is missing and resend my patch with an updated commit log to disable all tests to save some buil

Re: [PATCH] meson: add tests option

2021-03-02 Thread Romain Naour
Hello, Le 02/03/2021 à 12:08, Paolo Bonzini a écrit : > On 02/03/21 11:22, Thomas Huth wrote: >> On 26/02/2021 23.07, Romain Naour wrote: >>> tests/fp/fp-bench.c use fenv.h that is not always provided >>> by the libc (uClibc). >> >> For such  problem it might be better to check for the availabilit

Re: [PATCH] meson: add tests option

2021-03-02 Thread Paolo Bonzini
On 02/03/21 11:22, Thomas Huth wrote: On 26/02/2021 23.07, Romain Naour wrote: tests/fp/fp-bench.c use fenv.h that is not always provided by the libc (uClibc). For such  problem it might be better to check for the availability of the header and then to only disable the single test that depend

Re: [PATCH] meson: add tests option

2021-03-02 Thread Thomas Huth
On 26/02/2021 23.07, Romain Naour wrote: tests/fp/fp-bench.c use fenv.h that is not always provided by the libc (uClibc). For such problem it might be better to check for the availability of the header and then to only disable the single test that depends on it if the header is not available

[PATCH] meson: add tests option

2021-02-26 Thread Romain Naour
tests/fp/fp-bench.c use fenv.h that is not always provided by the libc (uClibc). To workaround this issue, add an new meson option to disable tests while building Qemu. Fixes: http://autobuild.buildroot.net/results/53f5d8baa994d599b9da013ee643b82353366ec3/build-end.log Signed-off-by: Romain Naou