X-Git-Url: http://www.git.stargrave.org/?a=blobdiff_plain;f=t%2Fepoll.t;h=f346b3871fd682c462752717e202fa4290847cba;hb=0ae89efce11e1e3b10a067c61c5b4cde30fa2b3b;hp=56ade672a902989c6ad861a875b616dcfc2bef80;hpb=17e52476687e03fecd579f765ad6864cde0f4203;p=public-inbox.git diff --git a/t/epoll.t b/t/epoll.t index 56ade672..f346b387 100644 --- a/t/epoll.t +++ b/t/epoll.t @@ -1,20 +1,25 @@ +#!perl -w +# Copyright (C) 2020-2021 all contributors +# License: AGPL-3.0+ use strict; +use v5.10.1; use Test::More; -use IO::Handle; use PublicInbox::Syscall qw(:epoll); plan skip_all => 'not Linux' if $^O ne 'linux'; my $epfd = epoll_create(); ok($epfd >= 0, 'epoll_create'); -my $hnd = IO::Handle->new_from_fd($epfd, 'r+'); # close on exit +open(my $hnd, '+<&=', $epfd); # for autoclose pipe(my ($r, $w)) or die "pipe: $!"; is(epoll_ctl($epfd, EPOLL_CTL_ADD, fileno($w), EPOLLOUT), 0, 'epoll_ctl socket EPOLLOUT'); my @events; -is(epoll_wait($epfd, 100, 10000, \@events), 1, 'epoll_wait returns'); -is_deeply(\@events, [ [ fileno($w), EPOLLOUT ] ], 'got expected events'); +epoll_wait($epfd, 100, 10000, \@events); +is(scalar(@events), 1, 'got one event'); +is($events[0], fileno($w), 'got expected FD'); close $w; -is(epoll_wait($epfd, 100, 0, \@events), 0, 'epoll_wait timeout'); +epoll_wait($epfd, 100, 0, \@events); +is(scalar(@events), 0, 'epoll_wait timeout'); done_testing;