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>
This commit is contained in:
Adam Langley 2017-05-02 14:48:47 -07:00
parent 73eb3a9d22
commit e5adaef980

View File

@ -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)
}