zsh-workers
 help / color / mirror / code / Atom feed
* zsh testcase hangs in AIX
@ 2019-07-30 14:46 Ayappan P2
  2019-07-30 18:25 ` Bart Schaefer
  0 siblings, 1 reply; 2+ messages in thread
From: Ayappan P2 @ 2019-07-30 14:46 UTC (permalink / raw)
  To: zsh-workers; +Cc: Ayappan P2

[-- Attachment #1: Type: text/plain, Size: 980 bytes --]


Hi,

We are porting zsh 5.5.1 in AIX. As part of the build, we are running
internal test suites by invoking "make check".

We are experiencing a hang issue with one of the testcase named "
A04redirect.ztst" . Below is the console output (with verbose set to 2 ).

ZTST_test: looking for new test
ZTST_test: examining line:

ZTST_test: examining line:
  fn() { local foo; read foo; print $foo; }
ZTST_getchunk: read code chunk:
  fn() { local foo; read foo; print $foo; }
  coproc fn
  print test output >&p
  read bar <&p
  print $bar
ZTST_test: examining line:
>test output
ZTST_getredir: read redir for '>':
test output
test output
ZTST_test: examining line:

Running test: '>&p' and '<&p' redirection
ZTST_test: expecting status: 0
Input: /tmp/zsh.ztst.2359968/ztst.in,
output: /tmp/zsh.ztst.2359968/ztst.out,
error: /tmp/zsh.ztst.2359968/ztst.terr
test output




It hanged at this step.

Any help would be great.

Thanks
Ayappan P

^ permalink raw reply	[flat|nested] 2+ messages in thread

* Re: zsh testcase hangs in AIX
  2019-07-30 14:46 zsh testcase hangs in AIX Ayappan P2
@ 2019-07-30 18:25 ` Bart Schaefer
  0 siblings, 0 replies; 2+ messages in thread
From: Bart Schaefer @ 2019-07-30 18:25 UTC (permalink / raw)
  To: Ayappan P2; +Cc: zsh-workers

On Tue, Jul 30, 2019 at 7:47 AM Ayappan P2 <ayappap2@in.ibm.com> wrote:
>
> We are porting zsh 5.5.1 in AIX.

Why not 5.7.1, the more recent release?

> Any help would be great.

This is testing the coprocess, which uses pipe() and then dups the
resulting descriptors before forking a child process.  This means
there is a situation where you have two-way communication between the
parent and child, so if there is either insufficient buffer space [so
write() blocks] or the buffers are not flushed [so read() blocks] then
the exchange can deadlock.  The test is assuming that pipes have more
than 12 bytes of buffering but are flushed at least on a line-by-line
basis.

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2019-07-30 18:26 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-07-30 14:46 zsh testcase hangs in AIX Ayappan P2
2019-07-30 18:25 ` Bart Schaefer

Code repositories for project(s) associated with this public inbox

	https://git.vuxu.org/mirror/zsh/

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).