summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorAndreas Schneider <asn@samba.org>2022-11-18 08:49:29 +0100
committerAndreas Schneider <asn@cryptomilk.org>2022-12-23 14:17:31 +0000
commit0c931fb301c5137668db671a6d861c5b5769aa18 (patch)
tree7fdefde52a7ba0a594c3d809ca59eade5f5dceac /lib
parent24275cd800b05538ae32e29cbe74529076184954 (diff)
downloadsamba-0c931fb301c5137668db671a6d861c5b5769aa18.tar.gz
waf: Run python tests also with tr_TR locale
BUG: https://bugzilla.samba.org/show_bug.cgi?id=15248 Signed-off-by: Andreas Schneider <asn@samba.org> Reviewed-by: Stefan Metzmacher <metze@samba.org> Autobuild-User(master): Andreas Schneider <asn@cryptomilk.org> Autobuild-Date(master): Fri Dec 23 14:17:31 UTC 2022 on sn-devel-184
Diffstat (limited to 'lib')
-rw-r--r--lib/ldb/wscript7
1 files changed, 7 insertions, 0 deletions
diff --git a/lib/ldb/wscript b/lib/ldb/wscript
index 97a1dcd2e58..2dfac46403f 100644
--- a/lib/ldb/wscript
+++ b/lib/ldb/wscript
@@ -619,6 +619,13 @@ def test(ctx):
'tests/python/index.py',
'tests/python/repack.py'],
extra_env={'SELFTEST_PREFIX': test_prefix})
+ pyret = samba_utils.RUN_PYTHON_TESTS(
+ ['tests/python/api.py',
+ 'tests/python/crash.py',
+ 'tests/python/index.py',
+ 'tests/python/repack.py'],
+ extra_env={'SELFTEST_PREFIX': test_prefix,
+ 'LC_ALL': 'tr_TR.UTF-8'})
print("Python testsuite returned %d" % pyret)
cmocka_ret = 0