Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for TestGdbBacktrace (0.2 sec)

  1. src/runtime/runtime-gdb_test.go

    func ddd() bool { return f() }
    
    //go:noinline
    func eee() bool { return true }
    
    var f = eee
    
    func main() {
    	_ = aaa()
    }
    `
    
    // TestGdbBacktrace tests that gdb can unwind the stack correctly
    // using only the DWARF debug info.
    func TestGdbBacktrace(t *testing.T) {
    	if runtime.GOOS == "netbsd" {
    		testenv.SkipFlaky(t, 15603)
    	}
    	if flag.Lookup("test.parallel").Value.(flag.Getter).Get().(int) < 2 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 22:16:54 UTC 2024
    - 23.2K bytes
    - Viewed (0)
Back to top