From 41906cd5efc2fe17f5fff3fa5fe8488e0cdc6399 Mon Sep 17 00:00:00 2001 From: Behdad Esfahbod Date: Sun, 11 Feb 2018 19:46:06 -0600 Subject: [PATCH] [subset] Another fixup I broke this in c31fcf4c58d96eb7d9781a986991b1a79ac7be44 --- src/hb-ot-cmap-table.hh | 2 +- test/subset/run-tests.py | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/src/hb-ot-cmap-table.hh b/src/hb-ot-cmap-table.hh index a2a6f8ba..030b822b 100644 --- a/src/hb-ot-cmap-table.hh +++ b/src/hb-ot-cmap-table.hh @@ -590,7 +590,7 @@ struct cmap hb_blob_t * subset (hb_subset_plan_t *plan, hb_face_t *source) const { - hb_prealloced_array_t groups; + hb_auto_array_t groups; populate_groups(plan->codepoints, &groups); diff --git a/test/subset/run-tests.py b/test/subset/run-tests.py index fe9582a7..faf61595 100755 --- a/test/subset/run-tests.py +++ b/test/subset/run-tests.py @@ -42,6 +42,7 @@ def run_test(test): "--font-file=" + test.font_path, "--output-file=" + out_file, "--unicodes=%s" % test.unicodes()] + print (' '.join(cli_args)) _, return_code = cmd(cli_args) if return_code: -- GitLab