1env GO111MODULE=off 2 3# Regression test for golang.org/issue/6844: 4# 'go test -a' should force dependencies in the standard library to be rebuilt. 5 6[short] skip 7 8go test -x -a -c testdata/dep_test.go 9stderr '^.*[/\\]compile'$GOEXE'["]? (.* )?regexp .*[/\\]regexp\.go' 10 11-- testdata/dep_test.go -- 12package deps 13 14import _ "testing"