Fix testrunner.py reporting
Bad indentation meant we wouldn't print status updates if the terminal
is wide enough to print the entire target name.
Test: with a wide terminal ./test/testrunner/testrunner.py --host -j48
Change-Id: I7e618a25e42fe2d5ac740565afec201265e47ecb
diff --git a/test/testrunner/testrunner.py b/test/testrunner/testrunner.py
index 8c0b928..c22b0be 100755
--- a/test/testrunner/testrunner.py
+++ b/test/testrunner/testrunner.py
@@ -527,10 +527,10 @@
test_name = ('%s...%s') % (
test_name[:(allowed_test_length - 3)/2],
test_name[-(allowed_test_length - 3)/2:])
- info += ('%s %s %s') % (
- progress_info,
- test_name,
- result_text)
+ info += ('%s %s %s') % (
+ progress_info,
+ test_name,
+ result_text)
print_text(info)
except Exception, e:
print_text(('%s\n%s\n') % (test_name, str(e)))