X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=tests%2Ftest-multipath.c;h=50747d9b6bba4ba5b1c60e441b02e4cb4c4658f1;hb=0ef165ecb57943e17a8ee8270df68ffb8d032e29;hp=8a355677d607b1ffe22fea374b8d483fd63ae9cd;hpb=f25d0cf3c366d92042269a4f787f19c741c2530c;p=sliver-openvswitch.git diff --git a/tests/test-multipath.c b/tests/test-multipath.c index 8a355677d..50747d9b6 100644 --- a/tests/test-multipath.c +++ b/tests/test-multipath.c @@ -1,5 +1,5 @@ /* - * Copyright (c) 2010, 2012 Nicira, Inc. + * Copyright (c) 2010, 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. @@ -26,25 +26,29 @@ #include "flow.h" #include "ofp-actions.h" -#include "random.h" #include "util.h" +#include "ovstest.h" -int -main(int argc, char *argv[]) +static void +test_multipath_main(int argc, char *argv[]) { enum { MP_MAX_LINKS = 63 }; struct ofpact_multipath mp; bool ok = true; + char *error; int n; set_program_name(argv[0]); - random_init(); if (argc != 2) { ovs_fatal(0, "usage: %s multipath_action", program_name); } - multipath_parse(&mp, argv[1]); + error = multipath_parse(&mp, argv[1]); + if (error) { + ovs_fatal(0, "%s", error); + } + for (n = 1; n <= MP_MAX_LINKS; n++) { enum { N_FLOWS = 65536 }; double disruption, perfect, distribution; @@ -57,16 +61,17 @@ main(int argc, char *argv[]) memset(histogram, 0, sizeof histogram); for (i = 0; i < N_FLOWS; i++) { int old_link, new_link; + struct flow_wildcards wc; struct flow flow; - random_bytes(&flow, sizeof flow); + flow_random_hash_fields(&flow); mp.max_link = n - 1; - multipath_execute(&mp, &flow); + multipath_execute(&mp, &flow, &wc); old_link = flow.regs[0]; mp.max_link = n; - multipath_execute(&mp, &flow); + multipath_execute(&mp, &flow, &wc); new_link = flow.regs[0]; assert(old_link >= 0 && old_link < n); @@ -124,9 +129,11 @@ main(int argc, char *argv[]) break; default: - NOT_REACHED(); + OVS_NOT_REACHED(); } } - return ok ? 0 : 1; + exit(ok ? 0 : 1); } + +OVSTEST_REGISTER("test-multipath", test_multipath_main);