GDB tests for Go language support: remove unnecessary first breakpoint
On s390x targets some of the Go test cases fail because the first breakpoint happens to be at the same spot as the breakpoint at main.main. When such a test case tries to continue to the first breakpoint, the program runs until the end instead, and the test fails like this: FAIL: gdb.go/handcall.exp: Going to first breakpoint (the program exited) This patch removes all the handling related to the first breakpoint in those cases. After applying the patch, the tests run successfully on s390x. gdb/testsuite/ChangeLog: * gdb.go/handcall.exp: Remove all logic related to the first breakpoint and rely on go_runto_main instead. * gdb.go/strings.exp: Likewise. * gdb.go/unsafe.exp: Likewise. * gdb.go/hello.exp: Likewise. Also rename the remaining breakpoint marker to "breakpoint 1". * gdb.go/handcall.go: Remove comment "set breakpoint 1 here". * gdb.go/strings.go: Likewise. * gdb.go/unsafe.go: Likewise. * gdb.go/hello.go: Likewise. Also remove the second occurrence of "set breakpoint 2 here" and rename the remaining breakpoint marker to "breakpoint 1".
This commit is contained in:
parent
4c0cab1e21
commit
04ff1e612e
9 changed files with 24 additions and 40 deletions
|
@ -5,6 +5,6 @@ import "fmt"
|
|||
var v_string string = "foo"
|
||||
|
||||
func main () {
|
||||
fmt.Println ("hello") // set breakpoint 1 here
|
||||
fmt.Println ("hello")
|
||||
fmt.Printf ("%s\n", v_string)
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue