summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog5
-rw-r--r--Test/A02alias.ztst4
2 files changed, 6 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index aeb2bb6ae..d37eb8daa 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -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 $
*****************************************************
diff --git a/Test/A02alias.ztst b/Test/A02alias.ztst
index 67ae8e52f..7121c50ef 100644
--- a/Test/A02alias.ztst
+++ b/Test/A02alias.ztst
@@ -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