regression

Signed-off-by: James Cherry <cherry@parallaxsw.com>
This commit is contained in:
James Cherry
2026-05-06 08:51:10 -07:00
parent 2a2450f4b7
commit 6eb6911d30

View File

@@ -66,9 +66,11 @@ proc setup {} {
set valgrind_shared_lib_failure 0
if { ![file exists $app_path] } {
error "$app_path not found."
puts "$app_path not found."
exit 1
} elseif { ![file executable $app_path] } {
error "$app_path is not executable."
puts "$app_path is not executable."
exit 1
}
}