[subset] add some extra logging to subset run-tests.py.

This commit is contained in:
Garret Rieger 2018-03-06 15:43:08 -08:00
parent c7d814eaa8
commit bfec28a7db
1 changed files with 2 additions and 0 deletions

View File

@ -60,6 +60,7 @@ def run_test(test, should_check_ots):
if return_code:
return fail_test(test, cli_args, "ttx (actual) returned %d" % (return_code))
print ("stripping checksums.")
expected_ttx = strip_check_sum (expected_ttx)
actual_ttx = strip_check_sum (actual_ttx)
@ -77,6 +78,7 @@ def run_test(test, should_check_ots):
return 0
def run_ttx(file):
print ("ttx %s" % file)
cli_args = ["ttx",
"-o-",
file]