1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
|
From: Shengjing Zhu <zhsj@debian.org>
Date: Fri, 20 Dec 2024 04:06:21 +0800
Subject: Skip TestGuessSubstitutePath
Looks like it doesn't work in GOPATH build mode
---
service/test/integration2_test.go | 2 ++
1 file changed, 2 insertions(+)
diff --git a/service/test/integration2_test.go b/service/test/integration2_test.go
index c55ae6a..c9fbeb4 100644
--- a/service/test/integration2_test.go
+++ b/service/test/integration2_test.go
@@ -3201,6 +3201,8 @@ func TestBreakpointVariablesWithoutG(t *testing.T) {
}
func TestGuessSubstitutePath(t *testing.T) {
+ t.Skip("not compatible with GOPATH build mode")
+
protest.MustHaveModules(t)
t.Setenv("NOCERT", "1")
|