1
0
Fork 0
mirror of git://git.code.sf.net/p/zsh/code synced 2025-01-01 05:16:05 +01:00

unposted: change new test in A02alias.ztst to use cat

This commit is contained in:
Peter Stephenson 2010-03-25 15:13:35 +00:00
parent e71df91bd2
commit 691be6d0fc
2 changed files with 6 additions and 3 deletions

View file

@ -1,5 +1,8 @@
2010-03-25 Peter Stephenson <pws@csr.com>
* unposted: Test/A02alias.ztst: change sort to cat to
make test foolerproof.
* 27827: Src/input.c, Test/A02alias.ztst: infinite loop
if alias with recursive definition occurred at end
of parsed string (normal shell input was OK).
@ -12965,5 +12968,5 @@
*****************************************************
* This is used by the shell to define $ZSH_PATCHLEVEL
* $Revision: 1.4944 $
* $Revision: 1.4945 $
*****************************************************

View file

@ -38,7 +38,7 @@
>With
print -u $ZTST_fd 'This test hangs the shell when it fails...'
alias sort='LC_ALL=C sort'
cat <(echo foo | sort)
alias cat='LC_ALL=C cat'
cat <(echo foo | cat)
0:Alias expansion works at the end of parsed strings
>foo