Re: [PATCH] kunit: Introduce autorun option

2025-01-13 Thread Stanislav Kinsburskii
On Thu, Oct 17, 2024 at 09:34:25PM +, Stanislav Kinsburskii wrote: > The new option controls tests run on boot or module load. With the new > debugfs "run" dentry allowing to run tests on demand, an ability to disable > automatic tests run becomes a useful option in case of intrusive tests. >

Re: [PATCH] kunit: Introduce autorun option

2024-10-28 Thread Stanislav Kinsburskii
On Tue, Oct 22, 2024 at 05:16:31PM -0400, Rae Moar wrote: > > diff --git a/lib/kunit/executor.c b/lib/kunit/executor.c > > index 34b7b6833df3..340723571b0f 100644 > > --- a/lib/kunit/executor.c > > +++ b/lib/kunit/executor.c > > @@ -29,6 +29,22 @@ const char *kunit_action(void) > > return a

Re: [PATCH] kunit: Introduce autorun option

2024-10-22 Thread Rae Moar
On Thu, Oct 17, 2024 at 5:34 PM Stanislav Kinsburskii wrote: > > The new option controls tests run on boot or module load. With the new > debugfs "run" dentry allowing to run tests on demand, an ability to disable > automatic tests run becomes a useful option in case of intrusive tests. > > The op