X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;ds=inline;f=tests%2Ftest-sflow.c;h=e992bb542689817bb4d06795c755235d435e27c8;hb=7efa3dccd1968535ae32caf59746aa11ce7532f2;hp=deebd82681d01f7f73eea4136974a47e9e62db5d;hpb=5689b76e77dafa01d849aad0edf65d46f5d62c50;p=sliver-openvswitch.git diff --git a/tests/test-sflow.c b/tests/test-sflow.c index deebd8268..e992bb542 100644 --- a/tests/test-sflow.c +++ b/tests/test-sflow.c @@ -35,6 +35,7 @@ #include "unixctl.h" #include "util.h" #include "vlog.h" +#include "ovstest.h" static void usage(void) NO_RETURN; static void parse_options(int argc, char *argv[]); @@ -468,13 +469,13 @@ static void print_sflow(struct ofpbuf *buf) { char *dgram_buf; - int dgram_len = buf->size; + int dgram_len = ofpbuf_size(buf); struct sflow_xdr xdrDatagram; struct sflow_xdr *x = &xdrDatagram; memset(x, 0, sizeof *x); if (SFLOWXDR_try(x)) { - SFLOWXDR_assert(x, (dgram_buf = ofpbuf_try_pull(buf, buf->size))); + SFLOWXDR_assert(x, (dgram_buf = ofpbuf_try_pull(buf, ofpbuf_size(buf)))); sflowxdr_init(x, dgram_buf, dgram_len); SFLOWXDR_assert(x, dgram_len >= SFLOW_MIN_LEN); process_datagram(x); @@ -484,8 +485,8 @@ print_sflow(struct ofpbuf *buf) } } -int -main(int argc, char *argv[]) +static void +test_sflow_main(int argc, char *argv[]) { struct unixctl_server *server; enum { MAX_RECV = 1500 }; @@ -529,7 +530,7 @@ main(int argc, char *argv[]) ofpbuf_clear(&buf); do { - retval = read(sock, buf.data, buf.allocated); + retval = read(sock, ofpbuf_data(&buf), buf.allocated); } while (retval < 0 && errno == EINTR); if (retval > 0) { ofpbuf_put_uninit(&buf, retval); @@ -545,8 +546,6 @@ main(int argc, char *argv[]) unixctl_server_wait(server); poll_block(); } - - return 0; } static void @@ -612,3 +611,5 @@ test_sflow_exit(struct unixctl_conn *conn, *exiting = true; unixctl_command_reply(conn, NULL); } + +OVSTEST_REGISTER("test-sflow", test_sflow_main);