aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/cmd/go/internal/vcweb/vcstest/vcstest_test.go7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/cmd/go/internal/vcweb/vcstest/vcstest_test.go b/src/cmd/go/internal/vcweb/vcstest/vcstest_test.go
index 4a6d60039e..df707d529e 100644
--- a/src/cmd/go/internal/vcweb/vcstest/vcstest_test.go
+++ b/src/cmd/go/internal/vcweb/vcstest/vcstest_test.go
@@ -158,6 +158,13 @@ func TestScripts(t *testing.T) {
if notInstalled := (vcweb.ServerNotInstalledError{}); errors.As(err, &notInstalled) || errors.Is(err, exec.ErrNotFound) {
t.Skip(err)
}
+
+ // For issue #71504 ignore an error about
+ // bzr not being able to find dependencies.
+ if strings.Contains(buf.String(), "brz: ERROR: Couldn't import breezy and dependencies.") {
+ t.Skip("skipping test due to bzr installation problem")
+ }
+
t.Error(err)
}
})