Re: test_extensions: fix inconsistency between meson.build and Makefile

Michael Paquier <michael@paquier.xyz>

From: Michael Paquier <michael@paquier.xyz>
To: Gurjeet Singh <gurjeet@singh.im>
Cc: Tristan Partin <tristan@neon.tech>, Jeff Davis <pgsql@j-davis.com>, pgsql-hackers@postgresql.org
Date: 2023-07-06T02:41:02Z
Lists: pgsql-hackers
On Sat, Jun 17, 2023 at 07:40:18AM -0700, Gurjeet Singh wrote:
> So attached is updated patch that makes the order consistent across
> all 3 occurrences.

There is no need to update unaccent since 44e73a4.

--- a/src/test/modules/test_extensions/meson.build
+++ b/src/test/modules/test_extensions/meson.build
@@ -47,5 +47,6 @@ tests += {
       'test_extensions',
       'test_extdepend',
     ],
+    'regress_args': ['--no-locale', '--encoding=UTF8'],

Why is the addition of --encoding necessary for test_extensions?  Its
Makefile has a NO_LOCALE, but it has no ENCODING set.
--
Michael

Commits

  1. test_extensions: sync meson.build with Makefile.

  2. test_extensions: make meson.build consistent with Makefile.