Re: [PATCH] tests: fix a failure when install-info is not available

2012-04-13 Thread Dmitry V. Levin
On Fri, Apr 13, 2012 at 10:52:32AM +0200, Stefano Lattarini wrote: > Hi Dmitry, thanks for the patch. But I'm not sure it's right (see below). > > On 04/13/2012 02:58 AM, Dmitry V. Levin wrote: > > This fixes a regression introduced by commit v1.11-766-g619c1b2. >

[PATCH] tests: fix a failure when install-info is not available

2012-04-12 Thread Dmitry V. Levin
This fixes a regression introduced by commit v1.11-766-g619c1b2. * tests/install-info-dir.test: Do not attempt to read or modify $instdir/info/dir file when install-info is not available. Signed-off-by: Dmitry V. Levin --- tests/install-info-dir.test |2 +- 1 files changed, 1 insertions

[PATCH] Fix exit status of signal handlers in shell scripts

2010-01-30 Thread Dmitry V. Levin
The value of `$?' on entrance to signal handlers in shell scripts cannot be relied upon, so set the exit code explicitly to 128 + SIGTERM == 143. * lib/am/check.am (am__check_pre): Use `exit 143' in signal handler. * lib/elisp-comp: Likewise. * lib/install-sh: Likewise. * lib/ylwrap: Likewise. ---