From 9228c8cba87bcb9b1acf603ff67e08098f3239b9 Mon Sep 17 00:00:00 2001 From: Rui Chen Date: Fri, 26 Dec 2025 18:18:26 -0500 Subject: [PATCH] script/runtime: add Go 1.26 testDeps ModulePath Signed-off-by: Rui Chen --- script/runtime/exe_go126.go | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 script/runtime/exe_go126.go diff --git a/script/runtime/exe_go126.go b/script/runtime/exe_go126.go new file mode 100644 index 00000000..04ec9b1b --- /dev/null +++ b/script/runtime/exe_go126.go @@ -0,0 +1,10 @@ +// Copyright 2018 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +//go:build go1.26 + +package runtime + +// ModulePath was added to testing.testDeps in Go 1.26. +func (nopTestDeps) ModulePath() string { return "" }