[test] Run shape tests with C locale as well

https://github.com/harfbuzz/harfbuzz/pull/4857
This commit is contained in:
Behdad Esfahbod 2024-09-11 11:35:15 -07:00
parent 70334d74dc
commit 98353ecefe

View file

@ -20,10 +20,13 @@ if not args or args[0].find('hb-shape') == -1 or not os.path.exists (args[0]):
sys.exit ("""First argument does not seem to point to usable hb-shape.""")
hb_shape, args = args[0], args[1:]
env = os.environ.copy()
env['LC_ALL'] = 'C'
process = subprocess.Popen ([hb_shape, '--batch'],
stdin=subprocess.PIPE,
stdout=subprocess.PIPE,
stderr=sys.stdout)
stderr=sys.stdout,
env=env)
passes = 0
fails = 0