Home | History | Annotate | Download | only in unit

Lines Matching defs:result

49   int result;
57 result = Curl_parsenetrc("test.example.com", &login, &password, filename);
58 fail_unless(result == 1, "Host not found should return 1");
70 result = Curl_parsenetrc("example.com", &login, &password, filename);
71 fail_unless(result == 0, "Host should be found");
83 result = Curl_parsenetrc("test.example.com", &login, &password, filename);
84 fail_unless(result == 1, "Host should be found");
97 result = Curl_parsenetrc("example.com", &login, &password, filename);
98 fail_unless(result == 0, "Host should be found");
111 result = Curl_parsenetrc("example.com", &login, &password, filename);
112 fail_unless(result == 0, "Host should be found");
125 result = Curl_parsenetrc("example.com", &login, &password, filename);
126 fail_unless(result == 0, "Host should have been found");
140 result = Curl_parsenetrc("example.com", &login, &password, filename);
141 fail_unless(result == 0, "Host should have been found");
158 result = Curl_parsenetrc("curl.example.com", &login, &password, filename);
159 fail_unless(result == 0, "Host should have been found");
173 result = Curl_parsenetrc("curl.example.com", &login, &password, filename);
174 fail_unless(result == 0, "Host should have been found");