1 /* SPDX-License-Identifier: BSD-3-Clause
2 * Copyright(c) 2010-2014 Intel Corporation
13 #include <sys/queue.h>
15 #ifdef RTE_LIB_CMDLINE
16 #include <cmdline_rdline.h>
17 #include <cmdline_parse.h>
18 #include <cmdline_socket.h>
20 extern cmdline_parse_ctx_t main_ctx[];
23 #include <rte_memory.h>
25 #include <rte_cycles.h>
27 #include <rte_string_fns.h>
29 #include <rte_timer.h>
34 #include "test_pdump.h"
37 #define RTE_LOGTYPE_APP RTE_LOGTYPE_USER1
39 #define FOR_EACH_SUITE_TESTCASE(iter, suite, case) \
40 for (iter = 0, case = suite->unit_test_cases[0]; \
41 suite->unit_test_cases[iter].testcase || \
42 suite->unit_test_cases[iter].testcase_with_data; \
43 iter++, case = suite->unit_test_cases[iter])
45 #define FOR_EACH_SUITE_TESTSUITE(iter, suite, sub_ts) \
46 for (iter = 0, sub_ts = suite->unit_test_suites ? \
47 suite->unit_test_suites[0]:NULL; sub_ts && \
48 suite->unit_test_suites[iter]->suite_name != NULL; \
49 iter++, sub_ts = suite->unit_test_suites[iter])
51 const char *prgname; /* to be set to argv[0] */
53 static const char *recursive_call; /* used in linux for MP and other tests */
56 no_action(void){ return 0; }
59 do_recursive_call(void)
64 int (*action_fn)(void);
66 { "run_secondary_instances", test_mp_secondary },
69 { "run_pdump_server_tests", test_pdump },
72 { "test_missing_c_flag", no_action },
73 { "test_main_lcore_flag", no_action },
74 { "test_invalid_n_flag", no_action },
75 { "test_no_hpet_flag", no_action },
76 { "test_allow_flag", no_action },
77 { "test_invalid_b_flag", no_action },
78 { "test_invalid_vdev_flag", no_action },
79 { "test_invalid_r_flag", no_action },
80 { "test_misc_flags", no_action },
81 { "test_memory_flags", no_action },
82 { "test_file_prefix", no_action },
83 { "test_no_huge_flag", no_action },
85 { "timer_secondary_spawn_wait", test_timer_secondary },
89 if (recursive_call == NULL)
91 for (i = 0; i < RTE_DIM(actions); i++) {
92 if (strcmp(actions[i].env_var, recursive_call) == 0)
93 return (actions[i].action_fn)();
95 printf("ERROR - missing action to take for %s\n", recursive_call);
101 #define MAX_EXTRA_ARGS 32
104 main(int argc, char **argv)
106 #ifdef RTE_LIB_CMDLINE
108 char *tests[argc]; /* store an array of tests to run */
115 extra_args = getenv("DPDK_TEST_PARAMS");
116 if (extra_args != NULL && strlen(extra_args) > 0) {
118 char *eargv[MAX_EXTRA_ARGS];
123 RTE_LOG(INFO, APP, "Using additional DPDK_TEST_PARAMS: '%s'\n",
125 eargc = rte_strsplit(extra_args, strlen(extra_args),
126 eargv, MAX_EXTRA_ARGS, ' ');
128 /* merge argc/argv and the environment args */
129 all_argc = argc + eargc;
130 all_argv = malloc(sizeof(*all_argv) * (all_argc + 1));
131 if (all_argv == NULL) {
136 for (i = 0; i < argc; i++)
137 all_argv[i] = argv[i];
138 for (i = 0; i < eargc; i++)
139 all_argv[argc + i] = eargv[i];
140 all_argv[all_argc] = NULL;
142 /* call eal_init with combined args */
143 ret = rte_eal_init(all_argc, all_argv);
146 ret = rte_eal_init(argc, argv);
158 ret = rte_timer_subsystem_init();
159 if (ret < 0 && ret != -EALREADY) {
165 if (commands_init() < 0) {
170 recursive_call = getenv(RECURSIVE_ENV_VAR);
171 if (recursive_call != NULL) {
172 ret = do_recursive_call();
176 #ifdef RTE_LIBEAL_USE_HPET
177 if (rte_eal_hpet_init(1) < 0)
180 "HPET is not enabled, using TSC as default timer\n");
183 #ifdef RTE_LIB_CMDLINE
184 char *dpdk_test = getenv("DPDK_TEST");
186 if (dpdk_test && strlen(dpdk_test) == 0)
189 if (dpdk_test && !command_valid(dpdk_test)) {
190 RTE_LOG(WARNING, APP, "Invalid DPDK_TEST value '%s'\n", dpdk_test);
195 tests[test_count++] = dpdk_test;
196 for (i = 1; i < argc; i++) {
197 if (!command_valid(argv[i]))
198 RTE_LOG(WARNING, APP, "Invalid test requested: '%s'\n", argv[i]);
200 tests[test_count++] = argv[i];
203 if (test_count > 0) {
206 cl = cmdline_new(main_ctx, "RTE>>", 0, 1);
212 for (i = 0; i < test_count; i++) {
213 snprintf(buf, sizeof(buf), "%s\n", tests[i]);
214 if (cmdline_in(cl, buf, strlen(buf)) < 0) {
215 printf("error on cmdline input\n");
219 ret = last_test_result;
227 /* if no DPDK_TEST env variable, go interactive */
228 cl = cmdline_stdin_new(main_ctx, "RTE>>");
234 cmdline_interact(cl);
235 cmdline_stdin_exit(cl);
243 rte_timer_subsystem_finalize();
250 unit_test_suite_count_tcs_on_setup_fail(struct unit_test_suite *suite,
251 int test_success, unsigned int *sub_ts_failed,
252 unsigned int *sub_ts_skipped, unsigned int *sub_ts_total)
254 struct unit_test_case tc;
255 struct unit_test_suite *ts;
258 FOR_EACH_SUITE_TESTSUITE(i, suite, ts) {
259 unit_test_suite_count_tcs_on_setup_fail(
260 ts, test_success, sub_ts_failed,
261 sub_ts_skipped, sub_ts_total);
262 suite->total += ts->total;
263 suite->failed += ts->failed;
264 suite->skipped += ts->skipped;
271 FOR_EACH_SUITE_TESTCASE(i, suite, tc) {
273 if (!tc.enabled || test_success == TEST_SKIPPED)
281 unit_test_suite_reset_counts(struct unit_test_suite *suite)
283 struct unit_test_suite *ts;
286 FOR_EACH_SUITE_TESTSUITE(i, suite, ts)
287 unit_test_suite_reset_counts(ts);
290 suite->succeeded = 0;
293 suite->unsupported = 0;
297 unit_test_suite_runner(struct unit_test_suite *suite)
299 int test_success, i, ret;
301 struct unit_test_case tc;
302 struct unit_test_suite *ts;
303 unsigned int sub_ts_succeeded = 0, sub_ts_failed = 0;
304 unsigned int sub_ts_skipped = 0, sub_ts_total = 0;
306 unit_test_suite_reset_counts(suite);
308 if (suite->suite_name) {
309 printf(" + ------------------------------------------------------- +\n");
310 printf(" + Test Suite : %s\n", suite->suite_name);
314 test_success = suite->setup();
315 if (test_success != 0) {
317 * setup did not pass, so count all enabled tests and
318 * mark them as failed/skipped
320 unit_test_suite_count_tcs_on_setup_fail(suite,
321 test_success, &sub_ts_failed,
322 &sub_ts_skipped, &sub_ts_total);
327 printf(" + ------------------------------------------------------- +\n");
329 FOR_EACH_SUITE_TESTCASE(suite->total, suite, tc) {
337 /* run test case setup */
339 test_success = tc.setup();
341 test_success = TEST_SUCCESS;
343 if (test_success == TEST_SUCCESS) {
344 /* run the test case */
346 test_success = tc.testcase();
347 else if (tc.testcase_with_data)
348 test_success = tc.testcase_with_data(tc.data);
350 test_success = -ENOTSUP;
352 if (test_success == TEST_SUCCESS)
354 else if (test_success == TEST_SKIPPED)
356 else if (test_success == -ENOTSUP)
357 suite->unsupported++;
360 } else if (test_success == -ENOTSUP) {
361 suite->unsupported++;
366 /* run the test case teardown */
370 if (test_success == TEST_SUCCESS)
371 status = "succeeded";
372 else if (test_success == TEST_SKIPPED)
374 else if (test_success == -ENOTSUP)
375 status = "unsupported";
379 printf(" + TestCase [%2d] : %s %s\n", suite->total,
382 FOR_EACH_SUITE_TESTSUITE(i, suite, ts) {
383 ret = unit_test_suite_runner(ts);
384 if (ret == TEST_SUCCESS)
386 else if (ret == TEST_SKIPPED)
392 suite->total += ts->total;
393 suite->succeeded += ts->succeeded;
394 suite->failed += ts->failed;
395 suite->skipped += ts->skipped;
396 suite->unsupported += ts->unsupported;
397 suite->executed += ts->executed;
400 /* Run test suite teardown */
407 printf(" + ------------------------------------------------------- +\n");
408 printf(" + Test Suite Summary : %s\n", suite->suite_name);
409 printf(" + ------------------------------------------------------- +\n");
411 FOR_EACH_SUITE_TESTSUITE(i, suite, ts)
412 printf(" + %s : %d/%d passed, %d/%d skipped, "
413 "%d/%d failed, %d/%d unsupported\n", ts->suite_name,
414 ts->succeeded, ts->total, ts->skipped, ts->total,
415 ts->failed, ts->total, ts->unsupported, ts->total);
417 if (suite->unit_test_suites) {
418 printf(" + ------------------------------------------------------- +\n");
419 printf(" + Sub Testsuites Total : %2d\n", sub_ts_total);
420 printf(" + Sub Testsuites Skipped : %2d\n", sub_ts_skipped);
421 printf(" + Sub Testsuites Passed : %2d\n", sub_ts_succeeded);
422 printf(" + Sub Testsuites Failed : %2d\n", sub_ts_failed);
423 printf(" + ------------------------------------------------------- +\n");
426 printf(" + Tests Total : %2d\n", suite->total);
427 printf(" + Tests Skipped : %2d\n", suite->skipped);
428 printf(" + Tests Executed : %2d\n", suite->executed);
429 printf(" + Tests Unsupported: %2d\n", suite->unsupported);
430 printf(" + Tests Passed : %2d\n", suite->succeeded);
431 printf(" + Tests Failed : %2d\n", suite->failed);
432 printf(" + ------------------------------------------------------- +\n");
434 last_test_result = suite->failed;
438 if (suite->total == suite->skipped)