...

Text file src/cmd/go/testdata/script/mod_list_compiled_concurrent.txt

Documentation: cmd/go/testdata/script

     1env GO111MODULE=on
     2
     3[short] skip
     4[!cgo] skip
     5
     6# Regression test for golang.org/issue/29667:
     7# spurious 'failed to cache compiled Go files' errors.
     8
     9env GOCACHE=$WORK/gocache
    10mkdir $GOCACHE
    11
    12go list -json -compiled -test=false -export=false -deps=true -- . &
    13go list -json -compiled -test=false -export=false -deps=true -- . &
    14wait
    15
    16-- go.mod --
    17module sandbox/bar
    18-- bar.go --
    19package bar
    20
    21import "C"

View as plain text