mirror of
git://git.code.sf.net/p/zsh/code
synced 2025-01-19 23:41:31 +01:00
c.f. 42726: Back off fg and bg tests.
This is too hard to make robust. Problems include - Reading input in different places causes lines to appear and disappear - There is no easy way to sequence the asynchronous operations following bg. - Response to job control of user commands on some OSes (MacOS, for example) is unpredicatble.
This commit is contained in:
parent
bdd595321f
commit
2d3b3510a8
2 changed files with 5 additions and 42 deletions
|
@ -1,3 +1,8 @@
|
|||
2018-04-26 Peter Stephenson <p.stephenson@samsung.com>
|
||||
|
||||
* c.f. 42726: Test/W02jobs.ztst: Back off fg and bg tests as they
|
||||
are currently too hard to make robust.
|
||||
|
||||
2018-04-25 Daniel Shahaf <d.s@daniel.shahaf.name>
|
||||
|
||||
* unposted: Src/exec.c: Correct process substitution buffer
|
||||
|
|
|
@ -191,48 +191,6 @@
|
|||
*>\[2] ? interrupt*sleep*
|
||||
*>\[1] ? kill*sleep*
|
||||
|
||||
zpty_start
|
||||
zpty_input $'dc 2>/dev/null\n1\np\n'
|
||||
zpty_line
|
||||
zpty_input $'1\n+\np\nq\n'
|
||||
zpty_stop
|
||||
0:Sanity check of "ed" as foreground process
|
||||
*>1
|
||||
*>2
|
||||
F:This test checks we can run the simple calculator dc as a way of testing
|
||||
F:user interaction for later job control tests . The test itself is
|
||||
F:trivial; its failure may simply indicate our test methodology does not
|
||||
F:work on this system.
|
||||
|
||||
zpty_start
|
||||
zpty_input $'dc 2>/dev/null\n1\np\n'
|
||||
zpty_line
|
||||
zpty_input $'\C-z'
|
||||
zpty_input 'fg'
|
||||
zpty_input $'1\n+\np\nq\n'
|
||||
zpty_stop
|
||||
0:Basic fg with subsequent user interaction
|
||||
*>1
|
||||
*>zsh:*(stopped|suspended)*dc*
|
||||
*>*continued*dc*
|
||||
*>2
|
||||
|
||||
zpty_start
|
||||
zpty_input $'dc 2>/dev/null\n1\np\n'
|
||||
zpty_line
|
||||
zpty_input $'\C-z'
|
||||
zpty_input 'bg'
|
||||
zpty_input 'fg'
|
||||
zpty_input $'1\n+\np\nq\n'
|
||||
zpty_stop
|
||||
0:bg and fg with user input
|
||||
*>1
|
||||
*>zsh:*(stopped|suspended)*dc*
|
||||
*>*continued*dc*
|
||||
*>*(stopped|suspended)*dc*
|
||||
*>*continued*dc*
|
||||
*>2
|
||||
|
||||
%clean
|
||||
|
||||
zmodload -ui zsh/zpty
|
||||
|
|
Loading…
Reference in a new issue