mirror of
https://github.com/postgres/postgres.git
synced 2025-04-25 21:42:33 +03:00
The tests of unaccent rely on UTF8 characters, and unlike any other test suite in the tree (fuzzystrmatch, citext, hstore, etc.), they would fail if run on a database that does not support UTF8 encoding. This commit fixes the tests of unaccent so as these are skipped when run on a database without UTF8 support, using the same method as the other test suits based on \if, getdatabaseencoding() and an alternate output file. This has been broken for a long time, but nobody has complained about that either, so no backpatch is done. This can be reproduced with something like REGRESS_OPTS="--no-locale --encoding=sql_ascii", for instance. To defend against that, this module's Makefile and meson.build enforced a UTF8 encoding without locales, but it did not offer protection for options given by REGRESS_OPTS. This switch makes this regression test suite more consistent with all the others, as well. Reviewed-by: Peter Eisentraut Discussion: https://postgr.es/m/ZIq1HUnIV2ksW85x@paquier.xyz
42 lines
817 B
Meson
42 lines
817 B
Meson
# Copyright (c) 2022-2023, PostgreSQL Global Development Group
|
|
|
|
unaccent_sources = files(
|
|
'unaccent.c',
|
|
)
|
|
|
|
if host_system == 'windows'
|
|
unaccent_sources += rc_lib_gen.process(win32ver_rc, extra_args: [
|
|
'--NAME', 'unaccent',
|
|
'--FILEDESC', 'unaccent - text search dictionary that removes accents',])
|
|
endif
|
|
|
|
unaccent = shared_module('unaccent',
|
|
unaccent_sources,
|
|
kwargs: contrib_mod_args,
|
|
)
|
|
contrib_targets += unaccent
|
|
|
|
install_data(
|
|
'unaccent--1.0--1.1.sql',
|
|
'unaccent--1.1.sql',
|
|
'unaccent.control',
|
|
kwargs: contrib_data_args,
|
|
)
|
|
|
|
install_data(
|
|
'unaccent.rules',
|
|
install_dir: dir_data / 'tsearch_data'
|
|
)
|
|
|
|
# XXX: Implement downlo
|
|
tests += {
|
|
'name': 'unaccent',
|
|
'sd': meson.current_source_dir(),
|
|
'bd': meson.current_build_dir(),
|
|
'regress': {
|
|
'sql': [
|
|
'unaccent',
|
|
],
|
|
},
|
|
}
|