autotest: be more verbose about internal errors & warnings

This commit is contained in:
Oswald Buddenhagen 2022-01-25 21:45:06 +01:00
parent 929aa3281b
commit 27f0c47010

View File

@ -6,6 +6,11 @@
use warnings;
use strict;
use Carp;
$SIG{__WARN__} = \&Carp::cluck;
$SIG{__DIE__} = \&Carp::confess;
use Cwd;
use File::Path;
use File::Temp 'tempdir';