On Wed, Dec 14, 2022 at 01:59:26PM -0800, Leah Rumancik wrote: > Make sure tmp.arglist is wiped before each run to avoid > accidentally rerunning tests. > > Signed-off-by: Leah Rumancik <leah.rumancik@xxxxxxxxx> Makes sense to me, though it might help to put the exact sequence of brokenness in the commit message since (like David) I wondered why the _summary and _wrapup functions wouldn't zap $tmp.arglist. Reviewed-by: Darrick J. Wong <djwong@xxxxxxxxxx> --D > --- > check | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/check b/check > index d2e51296..81a30928 100755 > --- a/check > +++ b/check > @@ -46,7 +46,7 @@ export DIFF_LENGTH=${DIFF_LENGTH:=10} > # by default don't output timestamps > timestamp=${TIMESTAMP:=false} > > -rm -f $tmp.list $tmp.tmp $tmp.grep $here/$iam.out $tmp.xlist $tmp.report.* > +rm -f $tmp.list $tmp.tmp $tmp.grep $here/$iam.out $tmp.xlist $tmp.report.* $tmp.arglist > > SRC_GROUPS="generic shared" > export SRC_DIR="tests" > -- > 2.39.0.314.g84b9a713c41-goog >