X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=tests%2Ftest-sha1.c;h=1896c0fe5f09588a91a41b1bfe40731e76329b0f;hb=0ef165ecb57943e17a8ee8270df68ffb8d032e29;hp=c7aec4b7429cc73240df7fb0b43a4a1b2ec4d0ae;hpb=c4cac9abf211b74c777b86ad7281e7b0f42a3a39;p=sliver-openvswitch.git diff --git a/tests/test-sha1.c b/tests/test-sha1.c index c7aec4b74..1896c0fe5 100644 --- a/tests/test-sha1.c +++ b/tests/test-sha1.c @@ -1,5 +1,5 @@ /* - * Copyright (c) 2009, 2011 Nicira Networks. + * Copyright (c) 2009, 2011, 2012 Nicira, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -22,6 +22,7 @@ #include #include "random.h" #include "util.h" +#include "ovstest.h" #undef NDEBUG #include @@ -108,8 +109,8 @@ test_one(const struct test_vector *vec) struct sha1_ctx sha1; sha1_init(&sha1); - sha1_update(&sha1, (const void *) vec->data, n0); - sha1_update(&sha1, (const void *) (vec->data + n0), n1); + sha1_update(&sha1, vec->data, n0); + sha1_update(&sha1, vec->data + n0, n1); sha1_final(&sha1, md); assert(!memcmp(md, vec->output, SHA1_DIGEST_SIZE)); } @@ -137,8 +138,8 @@ test_big_vector(void) free(vec.data); } -int -main(void) +static void +test_shar1_main(int argc OVS_UNUSED, char *argv[] OVS_UNUSED) { int i; @@ -149,6 +150,6 @@ main(void) test_big_vector(); putchar('\n'); - - return 0; } + +OVSTEST_REGISTER("test-sha1", test_shar1_main);