From 99b97064065250e12b03ec5d8fd540ceec06ac27 Mon Sep 17 00:00:00 2001 From: Leah Rumancik Date: Wed, 14 Dec 2022 13:59:26 -0800 Subject: [PATCH] check: wipe tmp.arglist Make sure tmp.arglist is wiped before each run to avoid accidentally rerunning tests. Signed-off-by: Leah Rumancik Reviewed-by: Darrick J. Wong Reviewed-by: David Disseldorp Signed-off-by: Zorro Lang --- check | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/check b/check index 1022e853..1ff0f44a 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.5