From: Bryan C. Mills Date: Tue, 5 Mar 2019 17:01:18 +0000 (-0500) Subject: test/bench/go1: add go.mod file X-Git-Tag: go1.13beta1~1184 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=b1a783df87069e395f0fb1a033a685b35d34b2ee;p=gostls13.git test/bench/go1: add go.mod file cmd/dist executes 'go test' within this directory, so it needs a go.mod file to tell the compiler what package path to use in diagnostic and debug information. Updates #30228 Change-Id: Ia313ac06bc0ec4631d415faa20c56cce2ac8dbc5 Reviewed-on: https://go-review.googlesource.com/c/go/+/165498 Run-TryBot: Bryan C. Mills TryBot-Result: Gobot Gobot Reviewed-by: Brad Fitzpatrick --- diff --git a/test/bench/go1/go.mod b/test/bench/go1/go.mod new file mode 100644 index 0000000000..41f75c4031 --- /dev/null +++ b/test/bench/go1/go.mod @@ -0,0 +1,3 @@ +module test/bench/go1 + +go 1.12