X-Git-Url: http://git.cascardo.eti.br/?a=blobdiff_plain;f=tests%2Ftest-multipath.c;h=3fcc97ac3c88d0df8515ce655478551f83f24e6a;hb=9d4e54c6ff743941bd0b6abc19e55b065c4a4186;hp=f1b12e26386823d0c3b00d6fd7cef56155d0373a;hpb=bdda5aca7b376bcc8c88072d00011a9da04af65c;p=cascardo%2Fovs.git diff --git a/tests/test-multipath.c b/tests/test-multipath.c index f1b12e263..3fcc97ac3 100644 --- a/tests/test-multipath.c +++ b/tests/test-multipath.c @@ -1,5 +1,5 @@ /* - * Copyright (c) 2010, 2012, 2013 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. @@ -15,22 +15,20 @@ */ #include - +#undef NDEBUG #include "multipath.h" - #include #include #include #include #include - #include "flow.h" #include "ofp-actions.h" -#include "random.h" +#include "ovstest.h" #include "util.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; @@ -39,7 +37,6 @@ main(int argc, char *argv[]) int n; set_program_name(argv[0]); - random_init(); if (argc != 2) { ovs_fatal(0, "usage: %s multipath_action", program_name); @@ -65,9 +62,7 @@ main(int argc, char *argv[]) struct flow_wildcards wc; struct flow flow; - random_bytes(&flow, sizeof flow); - memset(flow.zeros, 0, sizeof flow.zeros); - flow.mpls_depth = 0; + flow_random_hash_fields(&flow); mp.max_link = n - 1; multipath_execute(&mp, &flow, &wc); @@ -132,9 +127,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);