1
0
mirror of https://github.com/golang/go synced 2024-10-01 04:18:33 -06:00

go.tools/go/types: re-disable float_lit2.go std test

go/types doesn't correctly round the largest possible
float32 literal values and fails. Instead of relying
on Rat.Float64 and float32 conversion, we need a
Rat.Float32 implementation with correct rounding.

LGTM=adonovan
R=adonovan
CC=golang-codereviews
https://golang.org/cl/96540045
This commit is contained in:
Robert Griesemer 2014-05-21 09:55:02 -07:00
parent 11314ad3ea
commit 2fcf90cfac

View File

@ -119,6 +119,7 @@ func TestStdTest(t *testing.T) {
testTestDir(t, filepath.Join(runtime.GOROOT(), "test"),
"cmplxdivide.go", // also needs file cmplxdivide1.go - ignore
"sigchld.go", // don't work on Windows; testTestDir should consult build tags
"float_lit2.go", // TODO(gri) float32 constant conversion requires (missing) Rat.Float32
)
}