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