[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:
parent
2d54c34680
commit
e65bf60500
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue