X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=tests%2Ftest-jsonrpc.c;h=7251265fe40608b1c72a2d8ff44e446f104ea414;hb=28c5588e8e1a8d091c5d2275232c35f2968a97fa;hp=616ff2e0491e0bfcd10936be022e0454c87e3617;hpb=07fc4ed3410006950012aef8d78f017c5b833e98;p=sliver-openvswitch.git diff --git a/tests/test-jsonrpc.c b/tests/test-jsonrpc.c index 616ff2e04..7251265fe 100644 --- a/tests/test-jsonrpc.c +++ b/tests/test-jsonrpc.c @@ -1,5 +1,5 @@ /* - * Copyright (c) 2009, 2010, 2011, 2012, 2013 Nicira, Inc. + * Copyright (c) 2009, 2010, 2011, 2012, 2013, 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. @@ -33,20 +33,19 @@ #include "timeval.h" #include "util.h" #include "vlog.h" - -static struct command all_commands[]; +#include "ovstest.h" static void usage(void) NO_RETURN; static void parse_options(int argc, char *argv[]); +static struct command *get_all_commands(void); -int -main(int argc, char *argv[]) +static void +test_jsonrpc_main(int argc, char *argv[]) { proctitle_init(argc, argv); set_program_name(argv[0]); parse_options(argc, argv); - run_command(argc - optind, argv + optind, all_commands); - return 0; + run_command(argc - optind, argv + optind, get_all_commands()); } static void @@ -336,3 +335,11 @@ static struct command all_commands[] = { { "help", 0, INT_MAX, do_help }, { NULL, 0, 0, NULL }, }; + +static struct command * +get_all_commands(void) +{ + return all_commands; +} + +OVSTEST_REGISTER("test-jsonrpc", test_jsonrpc_main);