aboutsummaryrefslogtreecommitdiff
path: root/test/ken
diff options
context:
space:
mode:
authorKai Backman <kaib@golang.org>2010-07-20 15:53:16 +0300
committerKai Backman <kaib@golang.org>2010-07-20 15:53:16 +0300
commit36057e721e6fdc5c3dff8228c77ea36027a872c4 (patch)
tree32c7e536caa7170b5b633d8e182863f46372ee63 /test/ken
parent658d5213585d651b01b9b0e41a32b936093493d5 (diff)
downloadgo-36057e721e6fdc5c3dff8228c77ea36027a872c4.tar.gz
go-36057e721e6fdc5c3dff8228c77ea36027a872c4.zip
more soft float support. passes several basic tests
but with less precision than hardware counterparts. fixed a number of tests to output BUG when they failed. changed the runner to distinghuish between output and output containing ^BUG R=rsc CC=dho, golang-dev https://golang.org/cl/1778041
Diffstat (limited to 'test/ken')
-rw-r--r--test/ken/cplx4.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/ken/cplx4.go b/test/ken/cplx4.go
index d55d6a6e39..3c6f1f68c9 100644
--- a/test/ken/cplx4.go
+++ b/test/ken/cplx4.go
@@ -39,6 +39,6 @@ func main() {
// compiler used to crash on nested divide
c4 := cmplx(real(c3/2), imag(c3/2))
if c4 != c3/2 {
- fmt.Printf("c3 = %G != c4 = %G\n", c3, c4)
+ fmt.Printf("BUG: c3 = %G != c4 = %G\n", c3, c4)
}
}