On Sat, Dec 9, 2023 at 2:57 AM David Gow <davidgow@xxxxxxxxxx> wrote: > > On Tue, 5 Dec 2023 at 06:19, Rae Moar <rmoar@xxxxxxxxxx> wrote: > > > > Add is_init test attribute of type bool. Add to_string, get, and filter > > methods to lib/kunit/attributes.c. > > > > Mark each of the tests in the init section with the is_init=true attribute. > > > > Add is_init to the attributes documentation. > > > > Signed-off-by: Rae Moar <rmoar@xxxxxxxxxx> > > --- > > Would it be possible to not have this in kunit_attributes? I know it's > required for the run-after-boot stuff later, but I'd love this to be > (a) just generated at runtime, or (b) stored only at a suite or > suite-set level. It seems like a bit of a waste to store this > per-test-case, and to have it potentially accessible or overwritable > by users. > > Otherwise, this looks good (and I appreciate the automatic setting of > this when merging the suite sets. > > Maybe if we always kept the init suites in a separate set, we could > just use pointer comparisons to generate this; otherwise let's make > this a suite-level-only attribute (inherited by tests). > > > -- David Hello! I did consider making is_init a field within a suite object instead and then pointing to that in the kunit_attributes framework during filtering, printing, etc... I will change that out in the next version. Thanks! -Rae