regression

Signed-off-by: James Cherry <cherry@parallaxsw.com>
This commit is contained in:
James Cherry 2023-03-27 18:15:18 -07:00
parent 7b7b557991
commit 6c7c0b11df
1 changed files with 3 additions and 2 deletions

View File

@ -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
}