1
0
Fork 0
mirror of git://git.code.sf.net/p/zsh/code synced 2025-10-06 09:01:13 +02:00

31884: Make new pipestatus test implementation proof.

It seems uniq's vary in the number of spaces they output.
This commit is contained in:
Peter Stephenson 2013-10-24 17:31:02 +01:00
parent 65e131c838
commit 59b060bd5b
2 changed files with 7 additions and 2 deletions

View file

@ -1,3 +1,8 @@
2013-10-24 Peter Stephenson <p.stephenson@samsung.com>
* 31884: Test/A05execution.ztst: eliminate variable output
from test due to vagaries of uniq implementation.
2013-10-23 Barton E. Schaefer <schaefer@zsh.org>
* 31879: Src/jobs.c: improve $pipestatus behavior when the last

View file

@ -184,8 +184,8 @@
done;
print "${pipestatus[@]}")
ZTST_hashmark
done | sort | uniq -c
done | sort | uniq -c | sed 's/^ *//'
0:Check whether `$pipestatus[]' behaves.
> 2048 0 0 0
>2048 0 0 0
F:This test checks for a bug in `$pipestatus[]' handling. If it breaks then
F:the bug is still there or it reappeared. See workers-29973 for details.