aboutsummaryrefslogtreecommitdiff
path: root/tests/unit/unit1305.c
diff options
context:
space:
mode:
authorJulien Chaffraix <julien.chaffraix@gmail.com>2011-03-20 08:03:25 -0700
committerJulien Chaffraix <julien.chaffraix@gmail.com>2011-03-20 08:03:25 -0700
commit8702ebff7494c96c4aa41f08de4cfe140d5d4db3 (patch)
tree686681db64254e5944a400983433d1dc5120f0bd /tests/unit/unit1305.c
parent0f07142509d756f127cfba03d9a603d5184eb209 (diff)
unit1305: Fixed the test to match our coding style.
Diffstat (limited to 'tests/unit/unit1305.c')
-rw-r--r--tests/unit/unit1305.c80
1 files changed, 40 insertions, 40 deletions
diff --git a/tests/unit/unit1305.c b/tests/unit/unit1305.c
index 02fa682a8..68c76ceae 100644
--- a/tests/unit/unit1305.c
+++ b/tests/unit/unit1305.c
@@ -81,66 +81,66 @@ static void unit_stop( void )
static Curl_addrinfo *fake_ai(void)
{
- static Curl_addrinfo *ai;
- int ss_size;
+ static Curl_addrinfo *ai;
+ int ss_size;
- ss_size = sizeof (struct sockaddr_in);
+ ss_size = sizeof (struct sockaddr_in);
- if((ai = calloc(1, sizeof(Curl_addrinfo))) == NULL)
- return NULL;
+ if((ai = calloc(1, sizeof(Curl_addrinfo))) == NULL)
+ return NULL;
- if((ai->ai_canonname = strdup("dummy")) == NULL) {
- free(ai);
- return NULL;
- }
+ if((ai->ai_canonname = strdup("dummy")) == NULL) {
+ free(ai);
+ return NULL;
+ }
- if((ai->ai_addr = calloc(1, ss_size)) == NULL) {
- free(ai->ai_canonname);
- free(ai);
- return NULL;
- }
+ if((ai->ai_addr = calloc(1, ss_size)) == NULL) {
+ free(ai->ai_canonname);
+ free(ai);
+ return NULL;
+ }
- ai->ai_family = AF_INET;
- ai->ai_addrlen = ss_size;
+ ai->ai_family = AF_INET;
+ ai->ai_addrlen = ss_size;
- return ai;
+ return ai;
}
static CURLcode create_node(void)
{
- data_key = aprintf("%s:%d", "dummy", 0);
- if (!data_key)
- return CURLE_OUT_OF_MEMORY;
+ data_key = aprintf("%s:%d", "dummy", 0);
+ if (!data_key)
+ return CURLE_OUT_OF_MEMORY;
- data_node = calloc(1, sizeof(struct Curl_dns_entry));
- if (!data_node)
- return CURLE_OUT_OF_MEMORY;
+ data_node = calloc(1, sizeof(struct Curl_dns_entry));
+ if (!data_node)
+ return CURLE_OUT_OF_MEMORY;
- data_node->addr = fake_ai();
- if (!data_node->addr)
- return CURLE_OUT_OF_MEMORY;
+ data_node->addr = fake_ai();
+ if (!data_node->addr)
+ return CURLE_OUT_OF_MEMORY;
- return CURLE_OK;
+ return CURLE_OK;
}
UNITTEST_START
- struct Curl_dns_entry *nodep;
- size_t key_len;
+ struct Curl_dns_entry *nodep;
+ size_t key_len;
- /* Test 1305 exits without adding anything to the hash */
- if (strcmp(arg, "1305") != 0) {
- CURLcode rc = create_node();
- abort_unless(rc == CURLE_OK, "data node creation failed");
- key_len = strlen(data_key);
+ /* Test 1305 exits without adding anything to the hash */
+ if (strcmp(arg, "1305") != 0) {
+ CURLcode rc = create_node();
+ abort_unless(rc == CURLE_OK, "data node creation failed");
+ key_len = strlen(data_key);
- nodep = Curl_hash_add(hp, data_key, key_len+1, data_node);
- abort_unless(nodep, "insertion into hash failed");
- /* Freeing will now be done by Curl_hash_destroy */
- data_node = NULL;
+ nodep = Curl_hash_add(hp, data_key, key_len+1, data_node);
+ abort_unless(nodep, "insertion into hash failed");
+ /* Freeing will now be done by Curl_hash_destroy */
+ data_node = NULL;
- /* To do: test retrieval, deletion, edge conditions */
- }
+ /* To do: test retrieval, deletion, edge conditions */
+ }
UNITTEST_STOP