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,BAYES_00, DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,DKIM_VALID_EF, T_SCC_BODY_TEXT_LINE 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 396411F545; Wed, 2 Aug 2023 21:35:46 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=80x24.org; s=selector1; t=1691012146; bh=Fq3X3+JaGnSihxpNc0OYAAotM4nKVANrjz+yie/blKw=; h=Date:From:To:Subject:References:In-Reply-To:From; b=OetP6SzdEE1VWpc0qf9zqUF+AV0NCLLGHE6/wQK4kOK5/48PA6+bdL8NXNuDQvNje zYRMsVTmQ3GLGkYLaLOmKZQ473gfkpA9IhWLi/b47KJXzy+JftJWQ5iahmxNxAD4jv hA4YxFvcloBN+HUgFFTLlHcqTWjF11EPI0HLOzEs= Date: Wed, 2 Aug 2023 21:35:45 +0000 From: Eric Wong To: meta@public-inbox.org Subject: [PATCH 3/2] f3: fix test with updated executable name Message-ID: <20230802213546.M53476@dcvr> References: <20230726124515.3639819-1-e@80x24.org> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline In-Reply-To: <20230726124515.3639819-1-e@80x24.org> List-Id: Only noticed since this was on a new PERL_INLINE_DIRECTORY; not sure if there's a good way to test this without blowing away caches and slowing down tests even more :< --- t/lei_f3.t | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/t/lei_f3.t b/t/lei_f3.t index feebf534..5196618e 100644 --- a/t/lei_f3.t +++ b/t/lei_f3.t @@ -12,7 +12,7 @@ if (my $err = $@) { my $pkg_config = $ENV{PKG_CONFIG} // 'pkg-config'; like($err, qr/$pkg_config.*failed/, 'build failed'); } else { - ok(-x "$ENV{PERL_INLINE_DIRECTORY}/f3/leifs.fuse", + ok(-x "$ENV{PERL_INLINE_DIRECTORY}/f3/lei.fuse", 'built executable'); }