mirror of
https://github.com/harfbuzz/harfbuzz.git
synced 2025-04-05 13:35:06 +00:00
[test] Run shape tests with C locale as well
https://github.com/harfbuzz/harfbuzz/pull/4857
This commit is contained in:
parent
70334d74dc
commit
98353ecefe
1 changed files with 4 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue