diff options
author | Barton E. Schaefer <schaefer@zsh.org> | 2015-11-21 23:56:25 -0800 |
---|---|---|
committer | Barton E. Schaefer <schaefer@zsh.org> | 2015-11-21 23:56:25 -0800 |
commit | b1688305cc83e63104d4c581f649bbdcffa0e3b8 (patch) | |
tree | cb398b147c03d54bb79e071d810acde5c81b501f /Test/X02zlevi.ztst | |
parent | cce4261a3c6f4bf78b483db61623c80e3c98d10b (diff) | |
download | zsh-b1688305cc83e63104d4c581f649bbdcffa0e3b8.tar.gz zsh-b1688305cc83e63104d4c581f649bbdcffa0e3b8.tar.xz zsh-b1688305cc83e63104d4c581f649bbdcffa0e3b8.zip |
37181: consistent use of zmodload and corresponding ZTST_unimplemented or ZTST_skip
Diffstat (limited to 'Test/X02zlevi.ztst')
-rw-r--r-- | Test/X02zlevi.ztst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Test/X02zlevi.ztst b/Test/X02zlevi.ztst index 14bc02ef8..ced70300f 100644 --- a/Test/X02zlevi.ztst +++ b/Test/X02zlevi.ztst @@ -3,7 +3,7 @@ %prep if [[ $OSTYPE = cygwin ]]; then ZTST_unimplemented="the zsh/zpty module does not work on Cygwin" - elif ( zmodload -i zsh/zpty ) >/dev/null 2>&1; then + elif ( zmodload zsh/zpty 2>/dev/null ); then . $ZTST_srcdir/comptest comptestinit -v -z $ZTST_testdir/../Src/zsh else |