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

     1  [!symlink] skip
     2  env GO111MODULE=off
     3  
     4  # Issue 35941: suppress symlink warnings when running 'go list all'.
     5  symlink goproj/css -> $GOPATH/src/css
     6  
     7  go list all
     8  ! stderr 'warning: ignoring symlink'
     9  
    10  # Show symlink warnings when patterns contain '...'.
    11  go list goproj/...
    12  stderr 'warning: ignoring symlink'
    13  
    14  -- goproj/a.go --
    15  package a
    16  
    17  -- css/index.css --
    18  body {}
    19  

View as plain text