X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=tests%2Ftest-uuid.c;h=2c1da90ede8d12e9734af4a12d7225299988b0d9;hb=eadd16449c6e5292603cf009d29ab0e249979717;hp=a13d7793e53e77f47ea93cf94d444ec01a869ef9;hpb=01fed651097a90ef9365ce6c2f16da2970a5444e;p=sliver-openvswitch.git diff --git a/tests/test-uuid.c b/tests/test-uuid.c index a13d7793e..2c1da90ed 100644 --- a/tests/test-uuid.c +++ b/tests/test-uuid.c @@ -1,5 +1,5 @@ /* - * Copyright (c) 2009 Nicira, Inc. + * Copyright (c) 2009, 2014 Nicira, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -17,9 +17,10 @@ #include #include "uuid.h" #include +#include "ovstest.h" -int -main(int argc, char *argv[]) +static void +test_uuid_main(int argc, char *argv[]) { struct uuid uuid; @@ -34,6 +35,6 @@ main(int argc, char *argv[]) } printf(UUID_FMT"\n", UUID_ARGS(&uuid)); - - return 0; } + +OVSTEST_REGISTER("test-uuid", test_uuid_main);