From 6c7c0b11df1050e47083d292a2b188e094cc9549 Mon Sep 17 00:00:00 2001 From: James Cherry Date: Mon, 27 Mar 2023 18:15:18 -0700 Subject: [PATCH] regression Signed-off-by: James Cherry --- test/regression.tcl | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/test/regression.tcl b/test/regression.tcl index eb44ee49..72ad544a 100755 --- a/test/regression.tcl +++ b/test/regression.tcl @@ -93,7 +93,7 @@ proc parse_args {} { } proc expand_tests { argv } { - global test_groups + global test_groups errors set tests {} foreach arg $argv { @@ -111,7 +111,8 @@ proc expand_tests { argv } { lappend tests $arg } else { puts "Error: test $arg not found." - } + incr errors(no_cmd) + } } return $tests }