aboutsummaryrefslogtreecommitdiff
path: root/test/init1.go
diff options
context:
space:
mode:
authorAlan Donovan <adonovan@google.com>2013-02-12 13:17:49 -0500
committerAlan Donovan <adonovan@google.com>2013-02-12 13:17:49 -0500
commit052c942e20576f01f72d226d11aaf11e721009f3 (patch)
treea79450e9c97ad9bc9cac6b75655421c488408bd4 /test/init1.go
parent2fdd60b9b66f26720ea571345785285d4037dce5 (diff)
downloadgo-052c942e20576f01f72d226d11aaf11e721009f3.tar.gz
go-052c942e20576f01f72d226d11aaf11e721009f3.zip
test: ensure all failing tests exit nonzero.
Previously merely printing an error would cause the golden file comparison (in 'bash run') to fail, but that is no longer the case with the new run.go driver. R=iant CC=golang-dev https://golang.org/cl/7310087
Diffstat (limited to 'test/init1.go')
-rw-r--r--test/init1.go1
1 files changed, 1 insertions, 0 deletions
diff --git a/test/init1.go b/test/init1.go
index a888ad7440..f6eda6edfe 100644
--- a/test/init1.go
+++ b/test/init1.go
@@ -33,6 +33,7 @@ func init() {
sys1 := memstats.Sys
if sys1-sys > chunk*50 {
println("allocated 1000 chunks of", chunk, "and used ", sys1-sys, "memory")
+ panic("init1")
}
}