What version of Go are you using (go version)?
$ go version
go version go1.13 linux/amd64
Does this issue reproduce with the latest release?
Yes, both with go1.13 and tip (88076eb).
What operating system and processor architecture are you using (go env)?
go env Output
$ go env
GO111MODULE=""
GOARCH="amd64"
GOBIN=""
GOCACHE="/home/tom/.cache/go-build"
GOENV="/home/tom/.config/go/env"
GOEXE=""
GOFLAGS=""
GOHOSTARCH="amd64"
GOHOSTOS="linux"
GOOS="linux"
GOPATH="/home/tom/go"
GOPROXY="https://proxy.golang.org,direct"
GOROOT="/home/tom/sdk/go1.13"
GOSUMDB="sum.golang.org"
GOTMPDIR=""
GOTOOLDIR="/home/tom/sdk/go1.13/pkg/tool/linux_amd64"
GCCGO="gccgo"
AR="ar"
CC="gcc"
CXX="g++"
CGO_ENABLED="1"
GOMOD=""
CGO_CFLAGS="-g -O2"
CGO_CPPFLAGS=""
CGO_CXXFLAGS="-g -O2"
CGO_FFLAGS="-g -O2"
CGO_LDFLAGS="-g -O2"
PKG_CONFIG="pkg-config"
GOGCCFLAGS="-fPIC -m64 -pthread -fmessage-length=0 -fdebug-prefix-map=/tmp/go-build966808818=/tmp/go-build -gno-record-gcc-switches"
What did you do?
I spotted this running ./all.bash against tip, but it can be reproduced with:
$ GODEBUG=x509ignoreCN=1 go test -count 1 crypto/x509
What did you expect to see?
What did you see instead?
--- FAIL: TestCertificateParse (0.00s)
x509_test.go:444: x509: certificate is not valid for any names, but wanted to match mail.google.com
FAIL
FAIL crypto/x509 0.315s
FAIL
I understand that x509ignoreCN=1 is experimental, but it is documented—and noted that it may become the default—so it seems like the test should be made to pass.
x509.NameConstraintsWithoutSANs:
// You can avoid this error by setting the experimental GODEBUG environment
// variable to "x509ignoreCN=1", disabling Common Name matching entirely.
// This behavior might become the default in the future.
/cc @FiloSottile
What version of Go are you using (
go version)?Does this issue reproduce with the latest release?
Yes, both with go1.13 and tip (88076eb).
What operating system and processor architecture are you using (
go env)?go envOutputWhat did you do?
I spotted this running
./all.bashagainst tip, but it can be reproduced with:$ GODEBUG=x509ignoreCN=1 go test -count 1 crypto/x509What did you expect to see?
What did you see instead?
I understand that
x509ignoreCN=1is experimental, but it is documented—and noted that it may become the default—so it seems like the test should be made to pass.x509.NameConstraintsWithoutSANs:
/cc @FiloSottile