From 6c60a8ec79600990007f7a73ddbebfb5d9c95ada Mon Sep 17 00:00:00 2001 From: Peter Stephenson Date: Tue, 31 Jul 2007 14:24:26 +0000 Subject: 23732: three broken tests --- Test/B02typeset.ztst | 2 +- Test/C02cond.ztst | 18 +++++++++--------- 2 files changed, 10 insertions(+), 10 deletions(-) (limited to 'Test') diff --git a/Test/B02typeset.ztst b/Test/B02typeset.ztst index 701048986..1ec35183c 100644 --- a/Test/B02typeset.ztst +++ b/Test/B02typeset.ztst @@ -397,7 +397,7 @@ (export FOOENV=BAR env | grep '^FOOENV' print Exec - exec $ZTST_testdir/../Src/zsh -c ' + exec $ZTST_testdir/../Src/zsh -fc ' print Unset unset FOOENV env | grep "^FOOENV"') diff --git a/Test/C02cond.ztst b/Test/C02cond.ztst index 2d6ca6754..53c1350a8 100644 --- a/Test/C02cond.ztst +++ b/Test/C02cond.ztst @@ -36,7 +36,7 @@ if [[ -n $block ]]; then [[ -b $block[(f)1] && ! -b zerolength ]] else - print -u8 'Warning: Not testing [[ -b blockdevice ]] (no devices found)' + print -u$ZTST_fd 'Warning: Not testing [[ -b blockdevice ]] (no devices found)' [[ ! -b zerolength ]] fi 0D:-b cond @@ -55,7 +55,7 @@ if [[ -n $block ]]; then [[ -f zerolength && ! -f cond && ! -f $char && ! -f $block[(f)1] && ! -f . ]] else - print -u8 'Warning: Not testing [[ -f blockdevice ]] (no devices found)' + print -u$ZTST_fd 'Warning: Not testing [[ -f blockdevice ]] (no devices found)' [[ -f zerolength && ! -f cond && ! -f $char && ! -f . ]] fi 0:-f cond @@ -79,20 +79,20 @@ 0:-o cond if ! grep '#define HAVE_FIFOS' $ZTST_testdir/../config.h; then - print -u8 'Warning: Not testing [[ -p pipe ]] (FIFOs not supported)' + print -u$ZTST_fd 'Warning: Not testing [[ -p pipe ]] (FIFOs not supported)' [[ ! -p zerolength ]] else if whence mkfifo && mkfifo pipe || mknod pipe p; then [[ -p pipe && ! -p zerolength ]] else - print -u8 'Warning: Not testing [[ -p pipe ]] (cannot create FIFO)' + print -u$ZTST_fd 'Warning: Not testing [[ -p pipe ]] (cannot create FIFO)' [[ ! -p zerolength ]] fi fi 0dD:-p cond if (( EUID == 0 )); then - print -u8 'Warning: Not testing [[ ! -r file ]] (root reads anything)' + print -u$ZTST_fd 'Warning: Not testing [[ ! -r file ]] (root reads anything)' [[ -r zerolength && -r unmodish ]] else [[ -r zerolength && ! -r unmodish ]] @@ -129,10 +129,10 @@ cat unmodified touch newnewnew if [[ $OSTYPE == "cygwin" ]]; then - print -u8 "Warning: not testing [[ -N file ]] (not supported on Cygwin)" + print -u$ZTST_fd "Warning: not testing [[ -N file ]] (not supported on Cygwin)" true elif [[ "$(find . -prune -fstype nfs 2>/dev/null)" == "." ]]; then - print -u8 "Warning: not testing [[ -N file ]] (not supported with NFS)" + print -u$ZTST_fd "Warning: not testing [[ -N file ]] (not supported with NFS)" true else [[ -N newnewnew && ! -N unmodified ]] @@ -174,7 +174,7 @@ F:are not recorded. This does not indicate a problem in the shell. 0:|| and && in conds if ! grep '#define PATH_DEV_FD' $ZTST_testdir/../config.h; then - print -u8 "Warning: not testing [[ -e /dev/fd/0 ]] (/dev/fd not supported)" + print -u$ZTST_fd "Warning: not testing [[ -e /dev/fd/0 ]] (/dev/fd not supported)" true else [[ -e /dev/fd/0 ]] @@ -182,7 +182,7 @@ F:are not recorded. This does not indicate a problem in the shell. 0dD:/dev/fd support in conds handled by access if ! grep '#define PATH_DEV_FD' $ZTST_testdir/../config.h; then - print -u8 "Warning: not testing [[ -O /dev/fd/0 ]] (/dev/fd not supported)" + print -u$ZTST_fd "Warning: not testing [[ -O /dev/fd/0 ]] (/dev/fd not supported)" true else [[ -O /dev/fd/0 ]] -- cgit 1.4.1