[test] Minor

This commit is contained in:
Behdad Esfahbod 2018-10-31 18:25:05 -07:00
parent cf203af8a3
commit f928931948
1 changed files with 7 additions and 6 deletions

View File

@ -11,7 +11,13 @@ def cmd(command):
return process.stdout.readline().decode ("utf-8").strip ()
args = sys.argv[1:]
if not args or sys.argv[1].find('hb-shape') == -1 or not os.path.exists (sys.argv[1]):
reference = False
if len (args) and args[0] == "--reference":
reference = True
args = args[1:]
if not args or args[0].find('hb-shape') == -1 or not os.path.exists (args[0]):
print ("""First argument does not seem to point to usable hb-shape.""")
sys.exit (1)
hb_shape, args = args[0], args[1:]
@ -23,11 +29,6 @@ process = subprocess.Popen ([hb_shape, '--batch'],
fails = 0
reference = False
if len (args) and args[0] == "--reference":
reference = True
args = args[1:]
if not len (args):
args = ['-']