github.com/gagliardetto/golang-go@v0.0.0-20201020153340-53909ea70814/cmd/go/testdata/script/test_import_error_stack.txt (about)

     1  ! go test testdep/p1
     2  stderr 'package testdep/p1 \(test\)\n\timports testdep/p2\n\timports testdep/p3: build constraints exclude all Go files ' # check for full import stack
     3  
     4  -- testdep/p1/p1.go --
     5  package p1
     6  -- testdep/p1/p1_test.go --
     7  package p1
     8  
     9  import _ "testdep/p2"
    10  -- testdep/p2/p2.go --
    11  package p2
    12  
    13  import _ "testdep/p3"
    14  -- testdep/p3/p3.go --
    15  // +build ignore
    16  
    17  package ignored