Re: [PATCH] selftests/run_kselftest.sh: Add --error-on-fail flag

2025-10-12 Thread Brendan Jackman
On Fri Oct 10, 2025 at 6:34 AM UTC, Thomas Weißschuh wrote: > On Tue, Oct 07, 2025 at 11:06:46AM +, Brendan Jackman wrote: >> +report_failure() >> +{ >> +echo "not ok $*" >> "$kselftest_failures_file" >> +echo "$*" >> "$kselftest_failures_file" > > Both of these go into the failures fil

Re: [PATCH] selftests/run_kselftest.sh: Add --error-on-fail flag

2025-10-09 Thread Thomas Weißschuh
On Tue, Oct 07, 2025 at 11:06:46AM +, Brendan Jackman wrote: > Parsing KTAP is quite an inconvenience, but most of the time the thing > you really want to know is "did anything fail"? > > Let's give the user the ability to get this information without needing > to parse anything. > > Because