[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
|
import sys, os, subprocess, hashlib
|
||||||
|
|
||||||
def cmd(command):
|
def cmd(command):
|
||||||
print (command)
|
print (" ".join(command))
|
||||||
global process
|
global process
|
||||||
process.stdin.write ((':'.join (command) + '\n').encode ("utf-8"))
|
process.stdin.write ((':'.join (command) + '\n').encode ("utf-8"))
|
||||||
process.stdin.flush ()
|
process.stdin.flush ()
|
||||||
|
@ -95,10 +95,6 @@ for filename in args:
|
||||||
print ('# %s "%s" --unicodes %s' % (hb_shape, fontfile, unicodes))
|
print ('# %s "%s" --unicodes %s' % (hb_shape, fontfile, unicodes))
|
||||||
continue
|
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:
|
if "--font-funcs=ft" in options and not have_freetype:
|
||||||
skips += 1
|
skips += 1
|
||||||
continue
|
continue
|
||||||
|
|
Loading…
Reference in New Issue