Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for TestNoShrinkStackWhileParking (0.26 sec)

  1. src/runtime/chan_test.go

    		// and block in channel send.
    		time.Sleep(1 * time.Millisecond)
    		// trigger GC which will shrink the stack of the sender.
    		runtime.GC()
    	}
    	<-done
    }
    
    func TestNoShrinkStackWhileParking(t *testing.T) {
    	if runtime.GOOS == "netbsd" && runtime.GOARCH == "arm64" {
    		testenv.SkipFlaky(t, 49382)
    	}
    	if runtime.GOOS == "openbsd" {
    		testenv.SkipFlaky(t, 51482)
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 31 20:47:35 UTC 2023
    - 23.4K bytes
    - Viewed (0)
Back to top