From 6eb6911d303fbc274ac09b896ba921e12adfbbd2 Mon Sep 17 00:00:00 2001 From: James Cherry Date: Wed, 6 May 2026 08:51:10 -0700 Subject: [PATCH] regression Signed-off-by: James Cherry --- test/regression.tcl | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/test/regression.tcl b/test/regression.tcl index 523589be..f81f00ba 100755 --- a/test/regression.tcl +++ b/test/regression.tcl @@ -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 } }