X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=tests%2Ftest-multipath.c;h=f1b12e26386823d0c3b00d6fd7cef56155d0373a;hb=57e8d2bdc174cb24e2ae474ea805c7b7308d68a5;hp=8442bc2e9bd9a9256eac15cb137531792c3c9595;hpb=b02475c53b3ca857c45eb5e17d12fdf233a9dac8;p=sliver-openvswitch.git diff --git a/tests/test-multipath.c b/tests/test-multipath.c index 8442bc2e9..f1b12e263 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 Nicira, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -35,6 +35,7 @@ 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]); @@ -44,7 +45,11 @@ main(int argc, char *argv[]) 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,6 +62,7 @@ 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); @@ -64,11 +70,11 @@ main(int argc, char *argv[]) flow.mpls_depth = 0; 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);