From e65bf60500d575d83d71bc94723c58a4765d59ba Mon Sep 17 00:00:00 2001 From: Khaled Hosny Date: Thu, 29 Jul 2021 17:36:09 +0200 Subject: [PATCH] [test] make this test runner less verbose Print the command being called once and in a way the can be manually run. --- test/shaping/run-tests.py | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/test/shaping/run-tests.py b/test/shaping/run-tests.py index 4e9a3de77..d07a40bcf 100755 --- a/test/shaping/run-tests.py +++ b/test/shaping/run-tests.py @@ -3,7 +3,7 @@ import sys, os, subprocess, hashlib def cmd(command): - print (command) + print (" ".join(command)) global process process.stdin.write ((':'.join (command) + '\n').encode ("utf-8")) process.stdin.flush () @@ -95,10 +95,6 @@ for filename in args: print ('# %s "%s" --unicodes %s' % (hb_shape, fontfile, unicodes)) continue - if not reference: - print ('%s "%s" %s %s --unicodes %s' % - (hb_shape, fontfile, ' '.join(extra_options), ' '.join(options), unicodes)) - if "--font-funcs=ft" in options and not have_freetype: skips += 1 continue