about summary refs log tree commit diff
path: root/Test/runtests.zsh
diff options
context:
space:
mode:
Diffstat (limited to 'Test/runtests.zsh')
-rw-r--r--Test/runtests.zsh2
1 files changed, 1 insertions, 1 deletions
diff --git a/Test/runtests.zsh b/Test/runtests.zsh
index 562234d91..b66d579b6 100644
--- a/Test/runtests.zsh
+++ b/Test/runtests.zsh
@@ -7,7 +7,7 @@ emulate zsh
 # protect from catastrophic failure of an individual test.
 # We could probably do that with subshells instead.
 
-integer success failure skipped retval
+integer success=0 failure=0 skipped=0 retval
 for file in "${(f)ZTST_testlist}"; do
   $ZTST_exe +Z -f $ZTST_srcdir/ztst.zsh $file
   retval=$?