Searched refs:fail_unless (Results 1 - 9 of 9) sorted by relevance

/external/curl/tests/unit/
H A Dunit1301.c34 fail_unless( rc != 0 , "return code should be zero" );
37 fail_unless( rc == 0 , "return code should be zero" );
40 fail_unless( rc == 0 , "return code should be zero" );
43 fail_unless( rc != 0 , "return code should be non-zero" );
46 fail_unless( rc != 0 , "return code should be non-zero" );
49 fail_unless( rc != 0 , "return code should be non-zero" );
52 fail_unless( rc != 0 , "return code should be non-zero" );
H A Dunit1398.c41 fail_unless( rc == 3 , "return code should be 3" );
42 fail_unless(!strcmp(output, "bug"), "wrong output");
46 fail_unless( rc == 3 , "return code should be 3" );
47 fail_unless(!strcmp(output, "bug"), "wrong output");
52 fail_unless( rc == 2 , "return code should be 2" );
53 fail_unless(!strcmp(output, "bu"), "wrong output");
57 fail_unless( rc == 3 , "return code should be 3" );
58 fail_unless(!strcmp(output, "bug"), "wrong output");
62 fail_unless( rc == 3 , "return code should be 3" );
63 fail_unless(!strcm
[all...]
H A Dunit1397.c22 fail_unless( Curl_cert_hostcheck("www.example.com", "www.example.com"), "good 1" );
23 fail_unless( Curl_cert_hostcheck("*.example.com", "www.example.com"), "good 2" );
24 fail_unless( Curl_cert_hostcheck("xxx*.example.com", "xxxwww.example.com"), "good 3" );
25 fail_unless( Curl_cert_hostcheck("f*.example.com", "foo.example.com"), "good 4" );
26 fail_unless( Curl_cert_hostcheck("192.168.0.0", "192.168.0.0"), "good 5" );
44 fail_unless( Curl_cert_hostcheck("fe80::3285:a9ff:fe46:b619", "fe80::3285:a9ff:fe46:b619"), "good 6" );
H A Dunit1302.c53 fail_unless(rc == CURLE_OK, "return code should be CURLE_OK");
54 fail_unless(size == 4, "size should be 4");
59 fail_unless(rc == CURLE_OK, "return code should be CURLE_OK");
60 fail_unless(size == 4, "size should be 4");
65 fail_unless(rc == CURLE_OK, "return code should be CURLE_OK");
66 fail_unless(size == 4, "size should be 4");
71 fail_unless(rc == CURLE_OK, "return code should be CURLE_OK");
72 fail_unless(size == 8, "size should be 8");
77 fail_unless(rc == CURLE_OK, "return code should be CURLE_OK");
78 fail_unless(siz
[all...]
H A Dunit1304.c58 fail_unless(result == 1, "Host not found should return 1");
60 fail_unless(password[0] == 0, "password should not have been changed");
62 fail_unless(login[0] == 0, "login should not have been changed");
71 fail_unless(result == 0, "Host should be found");
73 fail_unless(password[0] == 0, "password should not have been changed");
75 fail_unless(strncmp(login, "me", 2) == 0, "login should not have been changed");
84 fail_unless(result == 1, "Host should be found");
86 fail_unless(password[0] == 0, "password should not have been changed");
88 fail_unless(strncmp(login, "me", 2) == 0, "login should not have been changed");
98 fail_unless(resul
[all...]
H A Dunit1300.c79 fail_unless(llist->size == 0, "list initial size should be zero");
80 fail_unless(llist->head == NULL, "list head should initiate to NULL");
81 fail_unless(llist->tail == NULL, "list tail should intiate to NULL");
82 fail_unless(llist->dtor == test_curl_llist_dtor,
97 fail_unless(Curl_llist_count(llist) == 1,
100 fail_unless(llist->head->ptr == &unusedData_case1,
103 fail_unless(llist->tail == llist->head,
118 fail_unless(llist->head->next->ptr == &unusedData_case3,
120 fail_unless(llist->tail->ptr == &unusedData_case3,
140 fail_unless(llis
[all...]
H A Dunit1308.c53 fail_unless(rc == 0, "curl_formadd returned error");
57 fail_unless(post == last, "post and last weren't the same");
63 fail_unless(rc == 0, "curl_formadd returned error");
68 fail_unless(rc == 0, "curl_formadd returned error");
72 fail_unless(rc == 0, "curl_formget returned error");
74 fail_unless(total_size == 486, "curl_formget got wrong size back");
87 fail_unless(rc == 0, "curl_formadd returned error");
90 fail_unless(rc == 0, "curl_formget returned error");
91 fail_unless(total_size == 847, "curl_formget got wrong size back");
H A Dunit1396.c87 fail_unless(outlen == list1[i].outlen, "wrong output length returned");
88 fail_unless(!memcmp(out, list1[i].out, list1[i].outlen),
102 fail_unless(outlen == list2[i].outlen, "wrong output length returned");
103 fail_unless(!memcmp(out, list2[i].out, list2[i].outlen),
H A Dcurlcheck.h32 #define fail_unless(expr, msg) \ macro

Completed in 172 milliseconds