about summary refs log tree commit diff
path: root/Test/ztst.zsh
diff options
context:
space:
mode:
authorTanaka Akira <akr@users.sourceforge.net>1999-12-21 23:12:01 +0000
committerTanaka Akira <akr@users.sourceforge.net>1999-12-21 23:12:01 +0000
commit9fa24a7e5148e785edab0608aa0a013a09ca076c (patch)
treeb87294bd03f9462fb9b6bed4d031cae37da62753 /Test/ztst.zsh
parenta6416c1f625919f47ea4fb0163b47eac07f623dc (diff)
downloadzsh-9fa24a7e5148e785edab0608aa0a013a09ca076c.tar.gz
zsh-9fa24a7e5148e785edab0608aa0a013a09ca076c.tar.xz
zsh-9fa24a7e5148e785edab0608aa0a013a09ca076c.zip
zsh-workers/9129
Diffstat (limited to 'Test/ztst.zsh')
-rwxr-xr-xTest/ztst.zsh6
1 files changed, 3 insertions, 3 deletions
diff --git a/Test/ztst.zsh b/Test/ztst.zsh
index a9bf16746..8ce94fca1 100755
--- a/Test/ztst.zsh
+++ b/Test/ztst.zsh
@@ -69,11 +69,11 @@ rm -rf dummy.tmp *.tmp
 # Report failure.  Note that all output regarding the tests goes to stdout.
 # That saves an unpleasant mixture of stdout and stderr to sort out.
 ZTST_testfailed() {
-  print "Test $ZTST_testname failed: $1"
+  print -r "Test $ZTST_testname failed: $1"
   if [[ -n $ZTST_message ]]; then
-    print "Was testing: $ZTST_message"
+    print -r "Was testing: $ZTST_message"
   fi
-  print "$ZTST_testname: test failed."
+  print -r "$ZTST_testname: test failed."
   ZTST_cleanup
   exit 1
 }