Re: [PATCH v1 2/8] kunit: Handle thread creation error

2024-02-29 Thread Kees Cook
On Thu, Feb 29, 2024 at 06:04:03PM +0100, Mickaël Salaün wrote: > Previously, if a thread creation failed (e.g. -ENOMEM), the function was > called (kunit_catch_run_case or kunit_catch_run_case_cleanup) without > marking the test as failed. Instead, fill try_result with the error > code returned b

[PATCH v1 2/8] kunit: Handle thread creation error

2024-02-29 Thread Mickaël Salaün
Previously, if a thread creation failed (e.g. -ENOMEM), the function was called (kunit_catch_run_case or kunit_catch_run_case_cleanup) without marking the test as failed. Instead, fill try_result with the error code returned by kthread_run(), which will mark the test as failed and print "internal