From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on dcvr.yhbt.net X-Spam-Level: X-Spam-ASN: X-Spam-Status: No, score=-4.0 required=3.0 tests=ALL_TRUSTED,BAYES_00 shortcircuit=no autolearn=ham autolearn_force=no version=3.4.2 Received: from localhost (dcvr.yhbt.net [127.0.0.1]) by dcvr.yhbt.net (Postfix) with ESMTP id 0ED7A1FA04 for ; Sun, 19 Apr 2020 23:19:40 +0000 (UTC) From: Eric Wong To: meta@public-inbox.org Subject: [PATCH 3/4] t/ds-leak: use BSD::Resource Date: Sun, 19 Apr 2020 23:19:36 +0000 Message-Id: <20200419231937.56365-4-e@yhbt.net> In-Reply-To: <20200419231937.56365-1-e@yhbt.net> References: <20200419231937.56365-1-e@yhbt.net> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit List-Id: We use BSD::Resource in other places, so there's no sense in avoiding it, here. --- t/ds-leak.t | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/t/ds-leak.t b/t/ds-leak.t index ea0eeaa6..b29d814e 100644 --- a/t/ds-leak.t +++ b/t/ds-leak.t @@ -6,6 +6,7 @@ use strict; use warnings; use Test::More; +use PublicInbox::TestCommon; use_ok 'PublicInbox::DS'; if ('close-on-exec for epoll and kqueue') { @@ -44,8 +45,9 @@ if ('close-on-exec for epoll and kqueue') { } SKIP: { - # not bothering with BSD::Resource - chomp(my $n = `/bin/sh -c 'ulimit -n'`); + require_mods('BSD::Resource', 1); + my $rlim = BSD::Resource::RLIMIT_NOFILE(); + my ($n,undef) = BSD::Resource::getrlimit($rlim); # FreeBSD 11.2 with 2GB RAM gives RLIMIT_NOFILE=57987! if ($n > 1024 && !$ENV{TEST_EXPENSIVE}) {