tests: eliminate Try::Tiny
This commit is contained in:
parent
689f3b8cf7
commit
b9224634dd
|
@ -31,7 +31,6 @@ use EV;
|
||||||
use AnyEvent;
|
use AnyEvent;
|
||||||
use AnyEvent::Handle;
|
use AnyEvent::Handle;
|
||||||
use AnyEvent::I3 qw(:all);
|
use AnyEvent::I3 qw(:all);
|
||||||
use Try::Tiny; # not in core
|
|
||||||
use X11::XCB;
|
use X11::XCB;
|
||||||
|
|
||||||
# install a dummy CHLD handler to overwrite the CHLD handler of AnyEvent / EV
|
# install a dummy CHLD handler to overwrite the CHLD handler of AnyEvent / EV
|
||||||
|
@ -159,7 +158,7 @@ sub take_job {
|
||||||
# files are not written) and fallback to killing it
|
# files are not written) and fallback to killing it
|
||||||
if ($coverage_testing) {
|
if ($coverage_testing) {
|
||||||
my $exited = 0;
|
my $exited = 0;
|
||||||
try {
|
eval {
|
||||||
say "Exiting i3 cleanly...";
|
say "Exiting i3 cleanly...";
|
||||||
i3("/tmp/nested-$display")->command('exit')->recv;
|
i3("/tmp/nested-$display")->command('exit')->recv;
|
||||||
$exited = 1;
|
$exited = 1;
|
||||||
|
|
|
@ -11,7 +11,6 @@ use EV;
|
||||||
use List::Util qw(first);
|
use List::Util qw(first);
|
||||||
use List::MoreUtils qw(lastval);
|
use List::MoreUtils qw(lastval);
|
||||||
use Time::HiRes qw(sleep);
|
use Time::HiRes qw(sleep);
|
||||||
use Try::Tiny;
|
|
||||||
use Cwd qw(abs_path);
|
use Cwd qw(abs_path);
|
||||||
use SocketActivation;
|
use SocketActivation;
|
||||||
|
|
||||||
|
@ -374,7 +373,7 @@ sub exit_gracefully {
|
||||||
$socketpath ||= get_socket_path();
|
$socketpath ||= get_socket_path();
|
||||||
|
|
||||||
my $exited = 0;
|
my $exited = 0;
|
||||||
try {
|
eval {
|
||||||
say "Exiting i3 cleanly...";
|
say "Exiting i3 cleanly...";
|
||||||
i3($socketpath)->command('exit')->recv;
|
i3($socketpath)->command('exit')->recv;
|
||||||
$exited = 1;
|
$exited = 1;
|
||||||
|
|
Loading…
Reference in New Issue