mirror of
https://github.com/isc-projects/bind9.git
synced 2026-05-28 04:34:54 -04:00
[9.20] fix: test: Use LC_ALL to override all system locales
The system tests were overriding the local locale by setting LANG to C. This does not override the locale in case there are individual LC_<*> variables like LC_CTYPE explicitly set. Use LC_ALL=C instead which is the proper way of overriding all currently set locales. Backport of MR !9109 Merge branch 'backport-ondrej/use-LC_ALL-not-LANG-9.20' into 'bind-9.20' See merge request isc-projects/bind9!9235
This commit is contained in:
commit
4098157e6c
1 changed files with 1 additions and 1 deletions
|
|
@ -59,6 +59,6 @@ BASIC_VARS = {
|
|||
if not os.getenv("TSAN_OPTIONS", "")
|
||||
else ":" # workaround for GL#4119
|
||||
),
|
||||
"LANG": "C",
|
||||
"LC_ALL": "C",
|
||||
"ANS_LOG_LEVEL": "debug",
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue