mirror of
https://github.com/harfbuzz/harfbuzz.git
synced 2025-04-05 05:25:05 +00:00
[test/shape] Skip uniscribe/directwrite shapers under Wine
This commit is contained in:
parent
9afdc7e1d2
commit
55743b239f
1 changed files with 11 additions and 0 deletions
|
@ -102,6 +102,17 @@ for what in ["shaper", "face-loader", "font-funcs"]:
|
|||
globals()[var_name] = what_list
|
||||
print(f"Supported {whats}: {what_list}")
|
||||
|
||||
# If running under Wine and not native dlls, make the respective shapers unavailable.
|
||||
if os.environ.get("WINEPATH"):
|
||||
overrides = os.environ.get("WINEDLLOVERRIDES", "").lower()
|
||||
if "directwrite" in supported_shapers and overrides.find("dwrite") == -1:
|
||||
supported_shapers.remove("directwrite")
|
||||
print("Skipping DirectWrite shaper under Wine.")
|
||||
if "uniscribe" in supported_shapers and overrides.find("usp10") == -1:
|
||||
supported_shapers.remove("uniscribe")
|
||||
print("Skipping Uniscribe shaper under Wine.")
|
||||
|
||||
|
||||
passes = 0
|
||||
fails = 0
|
||||
skips = 0
|
||||
|
|
Loading…
Add table
Reference in a new issue