unofficial mirror of meta@public-inbox.org
 help / color / mirror / Atom feed
* [PATCH] t/epoll: explicitly use scalar operator for @events
@ 2021-03-29  5:19 Eric Wong
  0 siblings, 0 replies; only message in thread
From: Eric Wong @ 2021-03-29  5:19 UTC (permalink / raw)
  To: meta

It's slightly easier to test on a machine without Test::More
and I'm hand-rolling my own is() and ok() subs.
---
 t/epoll.t | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/t/epoll.t b/t/epoll.t
index a1e73e07..f2a68904 100644
--- a/t/epoll.t
+++ b/t/epoll.t
@@ -17,6 +17,6 @@ is(scalar(@events), 1, 'got one event');
 is($events[0], fileno($w), 'got expected FD');
 close $w;
 epoll_wait($epfd, 100, 0, \@events);
-is(@events, 0, 'epoll_wait timeout');
+is(scalar(@events), 0, 'epoll_wait timeout');
 
 done_testing;

^ permalink raw reply related	[flat|nested] only message in thread

only message in thread, other threads:[~2021-03-29  5:19 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-03-29  5:19 [PATCH] t/epoll: explicitly use scalar operator for @events Eric Wong

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).