]> git.droids-corp.org - dpdk.git/commitdiff
app/test: various updates
authorIntel <intel.com>
Wed, 18 Sep 2013 10:00:00 +0000 (12:00 +0200)
committerThomas Monjalon <thomas.monjalon@6wind.com>
Wed, 9 Oct 2013 14:16:15 +0000 (16:16 +0200)
Signed-off-by: Intel
app/test/autotest_data.py
app/test/test.c
app/test/test.h
app/test/test_sched.c

index d98d7114c770132e02868671d5665a1c083cd1cf..a48c1e075eb79d3dcde3d0cb96e2b111065609a3 100644 (file)
@@ -55,7 +55,7 @@ parallel_test_group_list = [
 
 {
        "Prefix":       "group_1",
-       "Memory" :      "2",
+       "Memory" :      all_sockets(8),
        "Tests" :       
        [
                {
@@ -282,7 +282,7 @@ parallel_test_group_list = [
 },
 {
        "Prefix":       "group_6",
-       "Memory" :      all_sockets(600),
+       "Memory" :      all_sockets(620),
        "Tests" :       
        [
                {
index f586aeaa7c2b5afab72c0e1173c23174b8830287..606fc55abfeef8120e824fcc05d858ab09fe52f2 100644 (file)
@@ -94,6 +94,7 @@ do_recursive_call(void)
                if (strcmp(actions[i].env_var, recursive_call) == 0)
                        return (actions[i].action_fn)();
        }
+       printf("ERROR - missing action to take for %s\n", recursive_call);
        return -1;
 }
 #endif
index 463707d61afdd018368ae657054b80e2a5bbf846..1ce0c31abdcdbcfd72cc0267b4d5b7bc56257e22 100644 (file)
@@ -43,6 +43,8 @@
 
 extern const char *prgname;
 
+#include <cmdline_parse.h>
+
 extern cmdline_parse_ctx_t main_ctx[];
 
 int main(int argc, char **argv);
index c127d64a71e83ed6d960ff3aa60e8657700011fd..e87a1cad8dfb4c7372396497575c54b2fbd70ff4 100644 (file)
@@ -88,6 +88,7 @@ static struct rte_sched_port_params port_param = {
        .name = "port_0",
        .socket = 0, /* computed */
        .rate = 0, /* computed */
+       .mtu = 1522,
        .frame_overhead = RTE_SCHED_FRAME_OVERHEAD_DEFAULT,
        .n_subports_per_port = 1,
        .n_pipes_per_subport = 4096,