diff options
author | Jeff Davis | 2023-06-20 01:08:59 +0000 |
---|---|---|
committer | Jeff Davis | 2023-06-20 01:30:51 +0000 |
commit | 877bf52cffe587d33556e6259f610eb932699706 (patch) | |
tree | 76c1975a482d028f782574ffdccd9a994a4bf840 | |
parent | 68cb5af46cd8bb2f6fd25886da5d6045a6a42208 (diff) |
test_extensions: make meson.build consistent with Makefile.
Specify --no-locale and --encoding=UTF8 to be consistent with the
Makefile, which specifies NO_LOCALE=1. Fixes test for some locales
when meson is used and ICU is disabled. May have been an oversight in
e6927270cd.
Also switch argument order in unaccent/meson.build to make it
consistent in style.
Discussion: https://postgr.es/m/CABwTF4Wz41pNMJ9q3tpH=6mnvg6aopDU5Lzvers5=6=WJVekww@mail.gmail.com
Author: Gurjeet Singh
Author: Jeff Davis
-rw-r--r-- | contrib/unaccent/meson.build | 2 | ||||
-rw-r--r-- | src/test/modules/test_extensions/meson.build | 1 |
2 files changed, 2 insertions, 1 deletions
diff --git a/contrib/unaccent/meson.build b/contrib/unaccent/meson.build index 284d34ee291..bd629ec090e 100644 --- a/contrib/unaccent/meson.build +++ b/contrib/unaccent/meson.build @@ -37,6 +37,6 @@ tests += { 'sql': [ 'unaccent', ], - 'regress_args': ['--encoding=UTF8', '--no-locale'], + 'regress_args': ['--no-locale', '--encoding=UTF8'], }, } diff --git a/src/test/modules/test_extensions/meson.build b/src/test/modules/test_extensions/meson.build index 29e5bb2fb55..698775b28d8 100644 --- 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'], }, } |