Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for runTestAndUpdateIfNeeded (0.54 sec)

  1. src/crypto/tls/handshake_test.go

    	bogoFilter   = flag.String("bogo-filter", "", "BoGo test filter")
    	bogoLocalDir = flag.String("bogo-local-dir", "", "Local BoGo to use, instead of fetching from source")
    )
    
    func runTestAndUpdateIfNeeded(t *testing.T, name string, run func(t *testing.T, update bool), wait bool) {
    	success := t.Run(name, func(t *testing.T) {
    		if !*update && !wait {
    			t.Parallel()
    		}
    		run(t, false)
    	})
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 24.5K bytes
    - Viewed (0)
  2. 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)
  3. 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