in reply to Increase verbosity of "make test"
The problem you are trying to diagnose is due to a core perl bug in versions before 5.14. This is triggered by passing a tainted string to YAML::PP::Load, which is causing an infinite loop. On the test machines, it is eventually killed, which gives the status of 9 (SIGKILL).
Since YAML::PP is parsing the string, not using it in any unsafe way, you should be able to untaint the string before passing it to YAML::PP to avoid the bug. I've filed an issue on YAML::PP about this.
|
---|
Replies are listed 'Best First'. | |
---|---|
Re^2: Increase verbosity of "make test"
by bliako (Abbot) on Oct 11, 2023 at 14:34 UTC | |
Re^2: Increase verbosity of "make test"
by bliako (Abbot) on Oct 12, 2023 at 08:38 UTC | |
by hippo (Archbishop) on Oct 12, 2023 at 11:20 UTC | |
by bliako (Abbot) on Oct 16, 2023 at 22:22 UTC |