1
0
Fork 0
mirror of git://git.code.sf.net/p/zsh/code synced 2024-04-19 00:04:11 +02:00

50342: fix test added by 50306

This commit is contained in:
Jun-ichi Takimoto 2022-06-09 15:08:39 +09:00
parent 734740a5ed
commit c36068357b
3 changed files with 8 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2022-06-09 Jun-ichi Takimoto <takimoto-j@kba.biglobe.ne.jp>
* 50342: Src/jobs.c, Test/A05execution.ztst: fix test added by
50306
2022-06-08 Bart Schaefer <schaefer@zsh.org>
* 50341: Src/parse.c: disallow here-doc markers containing newline

View File

@ -2221,7 +2221,9 @@ addbgstatus(pid_t pid, int status)
{
static long child_max;
Bgstatus bgstatus_entry;
#ifdef DEBUG
LinkNode node;
#endif
if (!child_max) {
#ifdef _SC_CHILD_MAX

View File

@ -396,7 +396,7 @@ F:anonymous function, and a descriptor leak when backgrounding a pipeline
# TBD: the 0 above is believed to be bogus and should also be turned
# into 127 when the ccorresponding bug is fixed in the main shell.
sleep 1 & pid=$!
sleep 2 & pid=$!
kill -STOP $pid
sleep 1
kill -CONT $pid