summaryrefslogtreecommitdiff
path: root/test/float_lit.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/float_lit.go
parent2fdd60b9b66f26720ea571345785285d4037dce5 (diff)
downloadgo-git-052c942e20576f01f72d226d11aaf11e721009f3.tar.gz
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/float_lit.go')
-rw-r--r--test/float_lit.go4
1 files changed, 4 insertions, 0 deletions
diff --git a/test/float_lit.go b/test/float_lit.go
index 2912c3749c..4efae2362d 100644
--- a/test/float_lit.go
+++ b/test/float_lit.go
@@ -196,4 +196,8 @@ func main() {
if !close(-210.012e19, -210012, 1000, 19) {
print("-210.012e19 is ", -210.012e19, "\n")
}
+
+ if bad {
+ panic("float_lit")
+ }
}