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

     1  env GO111MODULE=off
     2  
     3  # Regression test for golang.org/issue/6844:
     4  # 'go test -a' should force dependencies in the standard library to be rebuilt.
     5  
     6  [short] skip
     7  
     8  go test -x -a -c testdata/dep_test.go
     9  stderr '^.*[/\\]compile'$GOEXE'["]? (.* )?regexp .*[/\\]regexp\.go'
    10  
    11  -- testdata/dep_test.go --
    12  package deps
    13  
    14  import _ "testing"
    15  

View as plain text