46183: New XFail test: external command with =(...) on LHS of pipeline cleans up its tempfiles.

This commit is contained in:
Daniel Shahaf 2020-07-12 15:57:45 +00:00
parent ad47c2d907
commit b5f24592ad
2 changed files with 12 additions and 0 deletions

View file

@ -1,5 +1,8 @@
2020-07-12 Daniel Shahaf <d.s@daniel.shahaf.name>
* 46183: Test/D03procsubst.ztst: New XFail test: external
command with =(...) on LHS of pipeline cleans up its tempfiles.
* unposted (cf. GitHub #11): Misc/vcs_info-examples: vcs_info
hg: docs: Change an example to not use a hex dump incantation
that may replace some bytes' values with asterisks.

View file

@ -160,3 +160,12 @@
$ZTST_testdir/../Src/zsh -df -o shfileexpansion -c 'cat =(echo hi)'
0:EQUALS expansion followed by =(...) (sh ordering) should work
>hi
() {
local TMPPREFIX=$PWD/tmp
command true =(true) =(true) | :
print -rC1 -- $TMPPREFIX*(N)
}
0f:external command with =(...) on LHS of pipeline cleans up its tempfiles
# (Expected result: no output.)