Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for badLR (0.02 sec)

  1. src/runtime/crash_test.go

    	output := runTestProg(t, "testprog", "BadTraceback")
    	for _, want := range []string{
    		"unexpected return pc",
    		"called from 0xbad",
    		"00000bad",    // Smashed LR in hex dump
    		"<main.badLR", // Symbolization in hex dump (badLR1 or badLR2)
    	} {
    		if !strings.Contains(output, want) {
    			t.Errorf("output does not contain %q:\n%s", want, output)
    		}
    	}
    }
    
    func TestTimePprof(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 19:46:10 UTC 2024
    - 27K bytes
    - Viewed (0)
Back to top