github.com/gagliardetto/golang-go@v0.0.0-20201020153340-53909ea70814/cmd/go/testdata/script/list_wildcard_skip_nonmatching.txt (about) 1 # Test that wildcards don't look in useless directories. 2 3 # First make sure that badpkg fails the list of '...'. 4 ! go list ... 5 stderr badpkg 6 7 # Check that the list of 'm...' succeeds. That implies badpkg was skipped. 8 go list m... 9 10 -- m/x.go -- 11 package m 12 -- badpkg/x.go -- 13 pkg badpkg