mirror of
https://github.com/harfbuzz/harfbuzz.git
synced 2025-04-04 21:15:06 +00:00
[test/shape] Don’t skip test if hb-shape --list-*
fails
This can happen with Wine when, e.g., `WINEPATH` is not set, and we would silently skip the tests because lists of supported shapers etc. are empty.
This commit is contained in:
parent
6cf308c857
commit
190ad35f71
1 changed files with 2 additions and 0 deletions
|
@ -97,6 +97,8 @@ for what in ["shaper", "face-loader", "font-funcs"]:
|
|||
)
|
||||
# Capture the output
|
||||
what_list = what_process.communicate()[0].decode("utf-8").strip().split()
|
||||
if what_process.returncode:
|
||||
sys.exit(f"Failed to run: {hb_shape} {subcommand}")
|
||||
whats = plural(what)
|
||||
var_name = supported_whats_var_name(what)
|
||||
globals()[var_name] = what_list
|
||||
|
|
Loading…
Add table
Reference in a new issue