Merge pull request #5177 from harfbuzz/exe_wrapper

[test] Allow running test suite under wine
This commit is contained in:
Behdad Esfahbod 2025-03-20 19:14:58 -06:00 committed by GitHub
commit e2a24ce13a
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 15 additions and 2 deletions

View file

@ -19,3 +19,4 @@ objcopy = 'i686-w64-mingw32-objcopy'
strip = 'i686-w64-mingw32-strip'
windres = 'i686-w64-mingw32-windres'
pkg-config = 'i686-w64-mingw32-pkg-config'
#exe_wrapper = 'wine'

View file

@ -19,3 +19,4 @@ objcopy = 'x86_64-w64-mingw32-objcopy'
strip = 'x86_64-w64-mingw32-strip'
windres = 'x86_64-w64-mingw32-windres'
pkg-config = 'x86_64-w64-mingw32-pkg-config'
#exe_wrapper = 'wine'

View file

@ -16,11 +16,18 @@ hb_shape, args = args[0], args[1:]
env = os.environ.copy()
env["LC_ALL"] = "C"
EXE_WRAPPER = os.environ.get("MESON_EXE_WRAPPER")
def open_shape_batch_process():
global hb_shape, env
cmd = [hb_shape, "--batch"]
if EXE_WRAPPER:
cmd = [EXE_WRAPPER] + cmd
process = subprocess.Popen(
[hb_shape, "--batch"],
cmd,
stdin=subprocess.PIPE,
stdout=subprocess.PIPE,
stderr=sys.stdout,
@ -79,8 +86,12 @@ def all_whats(what):
for what in ["shaper", "face-loader", "font-funcs"]:
subcommand = "--list-" + plural(what)
cmd = [hb_shape, subcommand]
if EXE_WRAPPER:
cmd = [EXE_WRAPPER] + cmd
what_process = subprocess.Popen(
[hb_shape, subcommand],
cmd,
stdin=subprocess.PIPE,
stdout=subprocess.PIPE,
stderr=sys.stdout,