Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for testableListenArgs (0.72 sec)

  1. src/net/platform_test.go

    		// Abstract unix domain sockets, a Linux-ism.
    		if address[0] == '@' && runtime.GOOS != "linux" {
    			return false
    		}
    	}
    	return true
    }
    
    // testableListenArgs reports whether arguments are testable on the
    // current platform configuration.
    func testableListenArgs(network, address, client string) bool {
    	if !testableNetwork(network) || !testableAddress(network, address) {
    		return false
    	}
    
    	var err error
    	var addr Addr
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 18 17:20:52 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  2. src/net/server_test.go

    // TestTCPServer tests concurrent accept-read-write servers.
    func TestTCPServer(t *testing.T) {
    	const N = 3
    
    	for i, tt := range tcpServerTests {
    		t.Run(tt.snet+" "+tt.saddr+"<-"+tt.taddr, func(t *testing.T) {
    			if !testableListenArgs(tt.snet, tt.saddr, tt.taddr) {
    				t.Skip("not testable")
    			}
    
    			ln, err := Listen(tt.snet, tt.saddr)
    			if err != nil {
    				if perr := parseDialError(err); perr != nil {
    					t.Error(perr)
    				}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 18 17:20:52 UTC 2023
    - 11.7K bytes
    - Viewed (0)
  3. src/net/listen_test.go

    // same port.
    func TestTCPListener(t *testing.T) {
    	switch runtime.GOOS {
    	case "plan9":
    		t.Skipf("not supported on %s", runtime.GOOS)
    	}
    
    	for _, tt := range tcpListenerTests {
    		if !testableListenArgs(tt.network, JoinHostPort(tt.address, "0"), "") {
    			t.Logf("skipping %s test", tt.network+" "+tt.address)
    			continue
    		}
    
    		ln1, err := Listen(tt.network, JoinHostPort(tt.address, "0"))
    		if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 18 17:20:52 UTC 2023
    - 20.5K bytes
    - Viewed (0)
Back to top