Lines Matching refs:test
693 const struct test_cs_entry *test = &test_cs_list[i]; variable
700 if(test->rfc) {
701 id = Curl_cipher_suite_lookup_id(test->rfc, strlen(test->rfc));
702 if(id != test->id) {
705 test->rfc, id, test->id);
711 if(test->openssl) {
712 id = Curl_cipher_suite_lookup_id(test->openssl, strlen(test->openssl));
713 if(id != test->id) {
716 test->openssl, id, test->id);
723 expect = test->rfc ? test->rfc : test->openssl;
725 Curl_cipher_suite_get_str(test->id, buf, sizeof(buf), true);
730 test->id, buf, expect);
736 expect = test->openssl ? test->openssl : test->rfc;
738 Curl_cipher_suite_get_str(test->id, buf, sizeof(buf), false);
741 if(test->id >= 0x0011 && test->id < 0x0017) {
751 test->id, buf, expect);
764 const struct test_str_entry *test = &test_str_list[i]; variable
770 if(id != test->id) {
774 test->str, id, test->id);
777 if(len > 64 || strncmp(ptr, test->str, len) != 0) {
780 test->str);