Skip to content

Commit

Permalink
tests: disable TestGeneratedDoc on 1.24 (tip) (go-delve#3820)
Browse files Browse the repository at this point in the history
The test is currently broken due to a change to the export format.
  • Loading branch information
aarzilli authored Oct 1, 2024
1 parent a3d7712 commit 4a5350f
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions cmd/dlv/dlv_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -403,6 +403,9 @@ func TestGeneratedDoc(t *testing.T) {
//TODO(alexsaezm): finish CI integration
t.Skip("skipping test on Linux/PPC64LE in CI")
}
if goversion.VersionAfterOrEqual(runtime.Version(), 1, 24) {
t.Skip("disabled due to export format changes")
}
// Checks gen-cli-docs.go
var generatedBuf bytes.Buffer
commands := terminal.DebugCommands(nil)
Expand Down

0 comments on commit 4a5350f

Please sign in to comment.