From e31721b5cf46a2fdd57af0fe5979f7a86e0b4aa6 Mon Sep 17 00:00:00 2001 From: Behdad Esfahbod Date: Sun, 6 Apr 2025 21:40:43 -0600 Subject: [PATCH] [test/shape] Write cmdline as test description --- test/shape/run-tests.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/test/shape/run-tests.py b/test/shape/run-tests.py index 4bf803b56..358b3c88b 100755 --- a/test/shape/run-tests.py +++ b/test/shape/run-tests.py @@ -337,8 +337,9 @@ for filename in args: ) print(" ...", file=sys.stderr) else: + cmd = hb_shape + " " + " ".join(cmd) passes += 1 - print(f"ok {number} - {fontfile}") + print(f"ok {number} - {cmd}") print("# %d tests passed; %d failed; %d skipped." % (passes, fails, skips)) if not (fails + passes):