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:
parent
73eb3a9d22
commit
e5adaef980
@ -375,7 +375,7 @@ func main() {
|
|||||||
if len(failed) > 0 {
|
if len(failed) > 0 {
|
||||||
fmt.Printf("\n%d of %d tests failed:\n", len(failed), len(testCases))
|
fmt.Printf("\n%d of %d tests failed:\n", len(failed), len(testCases))
|
||||||
for _, test := range failed {
|
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)
|
os.Exit(1)
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user