Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for TestDeferPtrsPanic (0.11 sec)

  1. src/runtime/stack_test.go

    	useStackAndCall(i, Goexit)
    }
    
    func setBig(p *int, x int, b bigBuf) {
    	*p = x
    }
    
    // TestDeferPtrsPanic is like TestDeferPtrsGoexit, but it's using panic instead
    // of Goexit to run the Defers. Those two are different execution paths
    // in the runtime.
    func TestDeferPtrsPanic(t *testing.T) {
    	for i := 0; i < 100; i++ {
    		c := make(chan int, 1)
    		go testDeferPtrsGoexit(c, i)
    		if n := <-c; n != 42 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 14 00:03:57 UTC 2023
    - 23.1K bytes
    - Viewed (0)
Back to top