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

     1  env GO111MODULE=off
     2  
     3  # issue 25980: crash in go list -e -test
     4  go list -e -test -deps -f '{{.Error}}' p
     5  stdout '^p[/\\]d_test.go:2:8: cannot find package "d" in any of:'
     6  
     7  -- p/d.go --
     8  package d
     9  -- p/d_test.go --
    10  package d_test
    11  import _ "d"
    12  

View as plain text