Meson test times out unless -v option is passed
See original GitHub issueDescribe the bug
meson test
times out when it shouldn’t, but meson test -v
executes correctly. It looks like the test is somehow suspended and kept in a suspended state until it times out, because my program randomly stops producing output during the test.
To Reproduce
This is the test I am running from the Zrythm repository, commit 99697cc5dddfd6584d780839aec7d4c1f6850dba.
meson test -C build actions_arranger_selections
It times out after 240 seconds.
The same issue occurs when doing ninja -C build test
When running the same test with -v
, it finishes in 132.27s
meson test -C build -v actions_arranger_selections
note: When using meson 0.55.1 (guix package), I do not experience this bug, and the test finishes without issues.
Expected behavior The test is expected to finish without timing out.
system parameters
- Is this a cross build or just a plain native build (for the same computer)? Native
- what operating system (e.g. MacOS Catalina, Windows 10, CentOS 8.0, Ubuntu 18.04, etc.): Tested on GNU GuixSD and Arch Linux
- what Python version are you using: Python 3.8.2
- what
meson --version
Commit ea2f34e2860680bab82aa7c2538971ab788209ce - what
ninja --version
if it’s a Ninja build: 1.10.0
Issue Analytics
- State:
- Created 3 years ago
- Comments:5 (5 by maintainers)
@bonzini looks like it passed
Fixed in master, please close.