isync

mailbox synchronization program
git clone https://git.code.sf.net/p/isync/isync
Log | Files | Refs | README | LICENSE

commit 27f0c470109047e956ae50e783334081955e6e4b
parent 929aa3281baed3fe26ea8e4a25fa6581ad2b4587
Author: Oswald Buddenhagen <ossi@users.sf.net>
Date:   Tue, 25 Jan 2022 21:45:06 +0100

autotest: be more verbose about internal errors & warnings

Diffstat:
Msrc/run-tests.pl | 5+++++
1 file changed, 5 insertions(+), 0 deletions(-)

diff --git a/src/run-tests.pl b/src/run-tests.pl @@ -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';