From 6e075cfca8230c272e5af15138a0049ba4d7e24e Mon Sep 17 00:00:00 2001 From: "John \"Juce\" Bruce" Date: Wed, 8 Apr 2015 18:00:55 -0700 Subject: [PATCH] Add Hard Return to run_all_unit_tests.sh (This is a merge of http://go/wvgerrit/14052) Adds a hard return at the end of the output of run_all_unit_tests.sh if tests failed, which was previously missing. Change-Id: Ie888168fb965e1f116c2cd7d586b46736abc9c80 --- libwvdrmengine/run_all_unit_tests.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libwvdrmengine/run_all_unit_tests.sh b/libwvdrmengine/run_all_unit_tests.sh index 9823baad..932c3f8d 100755 --- a/libwvdrmengine/run_all_unit_tests.sh +++ b/libwvdrmengine/run_all_unit_tests.sh @@ -47,7 +47,7 @@ adb_shell_run am start com.widevine.test/com.widevine.test.MediaDrmAPITest if [ $final_result -eq 0 ]; then echo "MediaDrm unittests completed successfully!" else - printf '\n%s' "${failed_tests[@]}" + printf '\n%s\n' "${failed_tests[@]}" exit $final_result fi