]> Cypherpunks repositories - gostls13.git/commit
cmd/go: convert some tests in vendor_test to the script framework
authorMichael Matloob <matloob@golang.org>
Mon, 6 Jan 2020 20:33:38 +0000 (15:33 -0500)
committerMichael Matloob <matloob@golang.org>
Thu, 27 Feb 2020 21:32:59 +0000 (21:32 +0000)
commitc6d281e5acbaa658b01c9dc03fd51d7228fe7360
treeca0c1d7032d872963f7c9837a5d82d469933d7aa
parent2cfc5e2b2fb14cde51702cd124f0c9b324c8066e
cmd/go: convert some tests in vendor_test to the script framework

Part of converting all tests to script framework to improve
test parallelism.

Updates #36320
Updates #17751

Change-Id: I601e0fcee32b8c5bf2107b520d1dfbe12a19ad3f
Reviewed-on: https://go-review.googlesource.com/c/go/+/213223
Reviewed-by: Jay Conrod <jayconrod@google.com>
37 files changed:
src/cmd/go/testdata/script/build_vendor.txt [new file with mode: 0644]
src/cmd/go/testdata/script/get_vendor.txt [new file with mode: 0644]
src/cmd/go/testdata/script/run_vendor.txt [new file with mode: 0644]
src/cmd/go/testdata/script/test_vendor.txt [new file with mode: 0644]
src/cmd/go/testdata/script/vendor_gopath_issue11409.txt [new file with mode: 0644]
src/cmd/go/testdata/script/vendor_import.txt [new file with mode: 0644]
src/cmd/go/testdata/script/vendor_import_missing.txt [new file with mode: 0644]
src/cmd/go/testdata/script/vendor_import_wrong.txt [new file with mode: 0644]
src/cmd/go/testdata/script/vendor_issue12156.txt [new file with mode: 0644]
src/cmd/go/testdata/script/vendor_list_issue11977.txt [new file with mode: 0644]
src/cmd/go/testdata/script/vendor_resolve.txt [new file with mode: 0644]
src/cmd/go/testdata/script/vendor_test_issue11864.txt [new file with mode: 0644]
src/cmd/go/testdata/script/vendor_test_issue14613.txt [new file with mode: 0644]
src/cmd/go/testdata/src/vend/bad.go [deleted file]
src/cmd/go/testdata/src/vend/dir1/dir1.go [deleted file]
src/cmd/go/testdata/src/vend/good.go [deleted file]
src/cmd/go/testdata/src/vend/hello/hello.go [deleted file]
src/cmd/go/testdata/src/vend/hello/hello_test.go [deleted file]
src/cmd/go/testdata/src/vend/hello/hellox_test.go [deleted file]
src/cmd/go/testdata/src/vend/subdir/bad.go [deleted file]
src/cmd/go/testdata/src/vend/subdir/good.go [deleted file]
src/cmd/go/testdata/src/vend/vendor/p/p.go [deleted file]
src/cmd/go/testdata/src/vend/vendor/q/q.go [deleted file]
src/cmd/go/testdata/src/vend/vendor/strings/msg.go [deleted file]
src/cmd/go/testdata/src/vend/vendor/vend/dir1/dir2/dir2.go [deleted file]
src/cmd/go/testdata/src/vend/x/invalid/invalid.go [deleted file]
src/cmd/go/testdata/src/vend/x/vendor/p/p.go [deleted file]
src/cmd/go/testdata/src/vend/x/vendor/p/p/p.go [deleted file]
src/cmd/go/testdata/src/vend/x/vendor/r/r.go [deleted file]
src/cmd/go/testdata/src/vend/x/x.go [deleted file]
src/cmd/go/testdata/testvendor/src/p/p.go [deleted file]
src/cmd/go/testdata/testvendor/src/q/vendor/x/x.go [deleted file]
src/cmd/go/testdata/testvendor/src/q/y/y.go [deleted file]
src/cmd/go/testdata/testvendor/src/q/z/z.go [deleted file]
src/cmd/go/testdata/testvendor2/src/p/p.go [deleted file]
src/cmd/go/testdata/testvendor2/vendor/x/x.go [deleted file]
src/cmd/go/vendor_test.go