test: change several tests to not print
This will make these tests more meaningful for gccgo, which
runs tests in parallel and has no equivalent to golden.out.
Remove ken/simpprint.go since it duplicates helloworld.go.
R=golang-dev, r
CC=golang-dev
https://golang.org/cl/5536058
diff --git a/test/fixedbugs/bug070.go b/test/fixedbugs/bug070.go
index f63caa9..24ac779 100644
--- a/test/fixedbugs/bug070.go
+++ b/test/fixedbugs/bug070.go
@@ -6,11 +6,14 @@
package main
+import "fmt"
+
func main() {
var i, k int
+ var r string
outer:
for k = 0; k < 2; k++ {
- print("outer loop top k ", k, "\n")
+ r += fmt.Sprintln("outer loop top k", k)
if k != 0 {
panic("k not zero")
} // inner loop breaks this one every time
@@ -18,12 +21,20 @@
if i != 0 {
panic("i not zero")
} // loop breaks every time
- print("inner loop top i ", i, "\n")
+ r += fmt.Sprintln("inner loop top i", i)
if true {
- print("do break\n")
+ r += "do break\n"
break outer
}
}
}
- print("broke\n")
+ r += "broke\n"
+ expect := `outer loop top k 0
+inner loop top i 0
+do break
+broke
+`
+ if r != expect {
+ panic(r)
+ }
}