From b1a783df87069e395f0fb1a033a685b35d34b2ee Mon Sep 17 00:00:00 2001 From: "Bryan C. Mills" Date: Tue, 5 Mar 2019 12:01:18 -0500 Subject: [PATCH] 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 --- test/bench/go1/go.mod | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 test/bench/go1/go.mod 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 -- 2.50.0