mirror of
https://github.com/go-delve/delve.git
synced 2025-10-28 20:53:42 +08:00
*: fix various test problems with go1.25 (#3946)
- disable dwz test if it fails because of dwarf5 - fix TestExamineMemoryCmd, which made unwarranted assumptions about memory
This commit is contained in:
committed by
GitHub
parent
fc6a439f22
commit
486574cb65
@ -122,7 +122,7 @@ func testDebugLinePrologueParser(p string, t *testing.T) {
|
||||
}
|
||||
|
||||
for _, ln := range dbl.Lookup {
|
||||
if ln.Path == "<autogenerated>" || strings.HasPrefix(ln.Path, "<missing>_") || ln.Path == "_gomod_.go" {
|
||||
if ln.Path == "<autogenerated>" || ln.Path == "?" || strings.HasPrefix(ln.Path, "<missing>_") || ln.Path == "_gomod_.go" {
|
||||
continue
|
||||
}
|
||||
if _, err := os.Stat(ln.Path); err != nil {
|
||||
|
||||
Reference in New Issue
Block a user