From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.6 (2021-04-09) on dcvr.yhbt.net X-Spam-Level: X-Spam-ASN: X-Spam-Status: No, score=-4.2 required=3.0 tests=ALL_TRUSTED,AWL,BAYES_00, DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,DKIM_VALID_EF shortcircuit=no autolearn=ham autolearn_force=no version=3.4.6 Received: from localhost (dcvr.yhbt.net [127.0.0.1]) by dcvr.yhbt.net (Postfix) with ESMTP id 43D221FA54 for ; Tue, 17 Oct 2023 23:38:20 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=80x24.org; s=selector1; t=1697585900; bh=EWz0Y9f228M5iWe8Pb0eBdBj5pWSylejbdgXLi30+DA=; h=From:To:Subject:Date:In-Reply-To:References:From; b=MKJYqAkaphbgp63rpmLBSSYnGi0mvj1+iKq5+ONLUgVeFcCLhjzVloBShQK2PMs4U YtVDOtw0KGkmc3nmG9mW4zrlxEvnG2GOsmwF3RENBanRdFAu8oqz/vWzKeTkz4pk7l 131Y44VOtQXLiutv+/PZHufKSOOuL6E0ozm00TaM= From: Eric Wong To: meta@public-inbox.org Subject: [PATCH 24/30] xt/mem-imapd-tls: remove unused/broken epoll imports Date: Tue, 17 Oct 2023 23:38:09 +0000 Message-ID: <20231017233815.1637932-25-e@80x24.org> In-Reply-To: <20231017233815.1637932-1-e@80x24.org> References: <20231017233815.1637932-1-e@80x24.org> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit List-Id: The `:epoll' tag has been gone for a few weeks, and EPOLLIN isn't used in this file anywhere. Fixes: 3005c1bc5d05 (ds: use object-oriented API for epoll) --- xt/mem-imapd-tls.t | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/xt/mem-imapd-tls.t b/xt/mem-imapd-tls.t index 58581017..bb2f6c35 100644 --- a/xt/mem-imapd-tls.t +++ b/xt/mem-imapd-tls.t @@ -7,7 +7,6 @@ use strict; use v5.10.1; use Socket qw(SOCK_STREAM IPPROTO_TCP SOL_SOCKET); use PublicInbox::TestCommon; -use PublicInbox::Syscall qw(:epoll); use PublicInbox::DS; require_mods(qw(-imapd)); my $inboxdir = $ENV{GIANT_INBOX_DIR}; @@ -134,7 +133,7 @@ package IMAPC; use strict; use parent qw(PublicInbox::DS); # fields: step: state machine, zin: Zlib inflate context -use PublicInbox::Syscall qw(EPOLLIN EPOLLOUT EPOLLONESHOT); +use PublicInbox::Syscall qw(EPOLLOUT EPOLLONESHOT); use Errno qw(EAGAIN); # determines where we start event_step use constant FIRST_STEP => ($ENV{TEST_COMPRESS} // 1) ? -2 : 0;