* test/test_driver.el (_run_with_timeout): Show error message.

This commit is contained in:
Paul Smith 2019-09-22 17:03:05 -04:00
parent 7fbd58cd6b
commit 99d1423059

View File

@ -1008,7 +1008,7 @@ sub _run_with_timeout
} else {
my $pid = fork();
if (! $pid) {
exec(@_) or die "exec: Cannot execute $_[0]\n";
exec(@_) or die "exec: Cannot execute $_[0]: $!\n";
}
local $SIG{ALRM} = sub {
my $e = $ERRSTACK[0];