Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for runTestAndUpdateIfNeeded (0.18 sec)

  1. src/crypto/tls/handshake_server_test.go

    	if len(test.command) == 0 {
    		test.command = defaultClientCommand
    	}
    	test.command = append([]string(nil), test.command...)
    	test.command = append(test.command, option)
    
    	runTestAndUpdateIfNeeded(t, version, test.run, test.wait)
    }
    
    func runServerTestTLS10(t *testing.T, template *serverTest) {
    	runServerTestForVersion(t, template, "TLSv10", "-tls1")
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 64.7K bytes
    - Viewed (0)
  2. src/crypto/tls/handshake_client_test.go

    	test := *template
    	if template.config != nil {
    		test.config = template.config.Clone()
    	}
    	test.name = version + "-" + test.name
    	test.args = append([]string{option}, test.args...)
    
    	runTestAndUpdateIfNeeded(t, version, test.run, false)
    }
    
    func runClientTestTLS10(t *testing.T, template *clientTest) {
    	runClientTestForVersion(t, template, "TLSv10", "-tls1")
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 88.7K bytes
    - Viewed (0)
Back to top