Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. src/runtime/debug_test.go

    		result0 = args.y0Ret
    		result1 = args.y1Ret
    	}
    	if result0 != 43 {
    		t.Errorf("want 43, got %d", result0)
    	}
    	if result1 != fval+1 {
    		t.Errorf("want 43, got %f", result1)
    	}
    }
    
    func TestDebugCallLarge(t *testing.T) {
    	g, after := startDebugCallWorker(t)
    	defer after()
    
    	// Inject a call with a large call frame.
    	const N = 128
    	var args struct {
    		in  [N]int
    		out [N]int
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 15:08:04 UTC 2023
    - 8K bytes
    - Viewed (0)
Back to top