Skip to content

Commit 877bf52

Browse files
committed
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 e692727. 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
1 parent 68cb5af commit 877bf52

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

contrib/unaccent/meson.build

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,6 @@ tests += {
3737
'sql': [
3838
'unaccent',
3939
],
40-
'regress_args': ['--encoding=UTF8', '--no-locale'],
40+
'regress_args': ['--no-locale', '--encoding=UTF8'],
4141
},
4242
}

src/test/modules/test_extensions/meson.build

+1
Original file line numberDiff line numberDiff line change
@@ -47,5 +47,6 @@ tests += {
4747
'test_extensions',
4848
'test_extdepend',
4949
],
50+
'regress_args': ['--no-locale', '--encoding=UTF8'],
5051
},
5152
}

0 commit comments

Comments
 (0)