Fix variable LANG in nls_test()

main
LeoHsiao 5 years ago
parent fe4a495ca2
commit ae1fbab645

@ -868,15 +868,15 @@ set Exif.Photo.DateTimeDigitized 2020:05:26 07:31:42
if nls != 'enable_nls=1': if nls != 'enable_nls=1':
print('Skipped. Because exiv2 is not built with nls.') print('Skipped. Because exiv2 is not built with nls.')
return return
if platform == 'platform=windows': if platform == 'platform=windows':
print('Skipped. Because nls_test cannot be run msvc builds.') print('Skipped. Because nls_test cannot be run msvc builds.')
return return
# variable LANG is unused if platform == 'platform=linux':
# if platform == 'platform=linux': LANG = 'LANGUAGE'
# LANG = 'LANGUAGE' else:
# else: LANG = 'LANG'
# LANG = 'LANG'
share_dir = os.path.normpath(os.path.join(BT.Config.bin_dir, '..', 'share2')) share_dir = os.path.normpath(os.path.join(BT.Config.bin_dir, '..', 'share2'))
os.makedirs(share_dir, exist_ok=True) os.makedirs(share_dir, exist_ok=True)
@ -890,7 +890,7 @@ set Exif.Photo.DateTimeDigitized 2020:05:26 07:31:42
# The above part is checking the environment, and the following part is executing the actual test # The above part is checking the environment, and the following part is executing the actual test
out = BT.Output() out = BT.Output()
for language in ['fr_FR', 'es_ES']: for language in ['fr_FR', 'es_ES']:
out += BT.Executer('exiv2', extra_env={'LC_ALL': language, 'LANG': language}, assert_returncode=[1]) out += BT.Executer('exiv2', extra_env={'LC_ALL': language, LANG: language}, assert_returncode=[1])
BT.reportTest('nls-test', out) BT.reportTest('nls-test', out)

Loading…
Cancel
Save