aboutsummaryrefslogtreecommitdiff
path: root/util/all_tests.go
diff options
context:
space:
mode:
authorAdam Langley <agl@google.com>2017-05-02 14:48:47 -0700
committerAdam Langley <agl@google.com>2017-05-02 22:13:30 +0000
commite5adaef980c6f321ac0dd69855a975da38f21de7 (patch)
tree2a2d8308535fd833c7e849fa8bb8f76b8c6970cb /util/all_tests.go
parent73eb3a9d2240517d95e9abb4fa9e9d4066a5f330 (diff)
downloadboringssl-e5adaef980c6f321ac0dd69855a975da38f21de7.zip
boringssl-e5adaef980c6f321ac0dd69855a975da38f21de7.tar.gz
boringssl-e5adaef980c6f321ac0dd69855a975da38f21de7.tar.bz2
Put spaces between arguments of failed tests.
When a test fails, there should be spaces between the argv of the failed command line. Change-Id: I5c168a919c1615df34a0eab63a7232453168adb3 Reviewed-on: https://boringssl-review.googlesource.com/15846 Reviewed-by: David Benjamin <davidben@google.com>
Diffstat (limited to 'util/all_tests.go')
-rw-r--r--util/all_tests.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/util/all_tests.go b/util/all_tests.go
index 8edf5b9..3e47ed2 100644
--- a/util/all_tests.go
+++ b/util/all_tests.go
@@ -375,7 +375,7 @@ func main() {
if len(failed) > 0 {
fmt.Printf("\n%d of %d tests failed:\n", len(failed), len(testCases))
for _, test := range failed {
- fmt.Printf("\t%s%s\n", strings.Join(test.args, ""), test.cpuMsg())
+ fmt.Printf("\t%s%s\n", strings.Join(test.args, " "), test.cpuMsg())
}
os.Exit(1)
}