[test] make this test runner less verbose

Print the command being called once and in a way the can be manually
run.
This commit is contained in:
Khaled Hosny 2021-07-29 17:36:09 +02:00 committed by Behdad Esfahbod
parent 2d54c34680
commit e65bf60500
1 changed files with 1 additions and 5 deletions

View File

@ -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