ash: fix error code regression

The commit 'ash,hush: set exit code 127 in "sh /does/not/exist" case'
only partly implemented the dash commit '[ERROR] Allow the originator
of EXERROR to set the exit status'.  This resulted in incorrect error
codes for a syntax error:

   $ )
   $ echo $?
   0

or a redirection error for a special builtin:

   $ rm -f xxx
   $ eval cat <xxx
   $ echo $?
   0

Signed-off-by: Ron Yorston <rmy@pobox.com>
Reported-by: Martijn Dekker <martijn@inlv.org>
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
This commit is contained in:
Ron Yorston
2017-01-03 11:18:23 +01:00
committed by Denys Vlasenko
parent bddbeb82bf
commit ea7d2f6ec0
5 changed files with 38 additions and 2 deletions

View File

@ -0,0 +1,4 @@
./test.sh: line 1: syntax error: unexpected ")"
Done:2
./exitcode2.tests: line 11: can't open does_not_exist: no such file
Done:1