On Tue, May 13, 2025 at 08:10:12AM +0000, Nirjhar Roy (IBM) wrote: > Once a new test file is created, it needs to explicitly > added to the group.list file in tests/<FSTYPE> directory > in order for it to get run. Automate > that by running make by as a part of creation of the new > test file in the "new" script. I think it's not necessary to force to do that, the users can do "make -jN" when they need :) > > Signed-off-by: Nirjhar Roy (IBM) <nirjhar.roy.lists@xxxxxxxxx> > --- > new | 8 ++++++++ > 1 file changed, 8 insertions(+) > > diff --git a/new b/new > index e55830ce..647763c1 100755 > --- a/new > +++ b/new > @@ -191,5 +191,13 @@ QA output created by $id > Silence is golden > End-of-File > > +echo "Adding test $tdir/$id to the test list..." > +make >> /dev/null 2>&1 || true > + > +if ! grep -q $id $tdir/group.list; then > + echo "$tdir/$id created but not added to the $tdir/group.list." > + echo "Possible reason is make failure. Please ensure a clean build" > +fi > + > echo " done." > exit 0 > -- > 2.34.1 > >