summaryrefslogtreecommitdiff
path: root/meson.build
diff options
context:
space:
mode:
authorAlvaro Herrera2023-08-29 16:06:55 +0000
committerAlvaro Herrera2023-08-29 16:06:55 +0000
commitdb6d9891e8e4405f10d9b0bba1ebb6c51c3ab059 (patch)
tree3f5a074fca11525d4a4b39f43df4b24083970569 /meson.build
parent63956bed7b10fb3bb5fe3f74250a33c9e226a921 (diff)
Generate a locale-agnostic initdb template
Fixup for 252dcb32397f. Without this, the "template" data directory created in the initial test steps uses a non-C locale, upsetting numerous tests that rely on parsing English error messages. Discussion: https://postgr.es/m/CAFj8pRB=XVWC0orWu0FbjrmyOpAMLqJiau80YyQOYQPfMj8Xxw@mail.gmail.com
Diffstat (limited to 'meson.build')
-rw-r--r--meson.build2
1 files changed, 1 insertions, 1 deletions
diff --git a/meson.build b/meson.build
index 8b2b521a013..5422885b0a2 100644
--- a/meson.build
+++ b/meson.build
@@ -3107,7 +3107,7 @@ sys.exit(sp.returncode)
''',
test_initdb_template,
temp_install_bindir / 'initdb',
- '-A', 'trust', '-N', '--no-instructions'
+ '-A', 'trust', '-N', '--no-instructions', '--no-locale'
],
priority: setup_tests_priority - 1,
timeout: 300,