[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [PATCH] tests: fix false failures when perl not available
From: |
Jim Meyering |
Subject: |
Re: [PATCH] tests: fix false failures when perl not available |
Date: |
Tue, 26 Jun 2018 07:36:13 -0700 |
On Tue, Jun 26, 2018 at 12:44 AM, Pádraig Brady <address@hidden> wrote:
> * tests/local.mk: Reference the stub that skips perl tests,
> with the correct path.
> ---
> tests/local.mk | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/tests/local.mk b/tests/local.mk
> index 307ade9..47c6b95 100644
> --- a/tests/local.mk
> +++ b/tests/local.mk
> @@ -28,7 +28,7 @@ TEST_EXTENSIONS = .sh .pl .xpl
> if HAVE_PERL
> TESTSUITE_PERL = $(PERL)
> else
> -TESTSUITE_PERL = $(SHELL) $(srcdir)/no-perl
> +TESTSUITE_PERL = $(SHELL) $(srcdir)/tests/no-perl
Good one. Thanks!