X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=tests%2Ftest-sha1.c;h=1896c0fe5f09588a91a41b1bfe40731e76329b0f;hb=0ef165ecb57943e17a8ee8270df68ffb8d032e29;hp=2be79422ee419a9d66d40bbb0075a29d4f650493;hpb=e9c048007b113fdf05ca3ccbfa25d01c24f1da43;p=sliver-openvswitch.git diff --git a/tests/test-sha1.c b/tests/test-sha1.c index 2be79422e..1896c0fe5 100644 --- a/tests/test-sha1.c +++ b/tests/test-sha1.c @@ -22,6 +22,7 @@ #include #include "random.h" #include "util.h" +#include "ovstest.h" #undef NDEBUG #include @@ -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);