| Server IP : 217.160.0.135 / Your IP : 216.73.217.85 Web Server : Apache System : Linux www 6.18.52-i1-ampere #1203 SMP Mon Sep 14 18:29:59 CEST 2026 aarch64 User : sws1074145052 ( 1074145052) PHP Version : 8.3.32 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /lib/go-1.23/src/cmd/go/testdata/script/ |
Upload File : |
# https://golang.org/issue/45863: a typo in a test package leading to an # import cycle should be diagnosed, instead of causing an infinite loop. # The failure mode of this test prior to the fix was a timeout or OOM crash. go list -e -test -deps ./datastore/sql -- go.mod -- module golang.org/issue45863 go 1.17 -- datastore/datastore_health.go -- package datastore import ( "golang.org/issue45863/datastore" "golang.org/issue45863/datastore/sql" ) -- datastore/sql/sql.go -- package sql -- datastore/sql/sql_test.go -- package sql import _ "golang.org/issue45863/datastore"