Black Lives Matter. Support the Equal Justice Initiative.

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

Documentation: cmd/go/testdata/script

     1  [!net] skip
     2  [!exec:git] skip
     3  env GO111MODULE=off
     4  
     5  go get github.com/rsc/go-get-issue-11864
     6  
     7  # build -i should work
     8  go build -i github.com/rsc/go-get-issue-11864
     9  go build -i github.com/rsc/go-get-issue-11864/t
    10  
    11  # test -i should work like build -i (golang.org/issue/11988)
    12  go test -i github.com/rsc/go-get-issue-11864
    13  go test -i github.com/rsc/go-get-issue-11864/t
    14  
    15  # test should work too
    16  go test github.com/rsc/go-get-issue-11864
    17  go test github.com/rsc/go-get-issue-11864/t
    18  
    19  # external tests should observe internal test exports (golang.org/issue/11977)
    20  go test github.com/rsc/go-get-issue-11864/vendor/vendor.org/tx2
    21  

View as plain text