1 /* SPDX-License-Identifier: BSD-3-Clause
2 * Copyright(c) 2010-2014 Intel Corporation
10 #include <rte_debug.h>
11 #include <rte_common.h>
13 #include <rte_service_component.h>
22 /* use fork() to test rte_panic() */
32 rte_panic("Test Debug\n");
34 printf("Fork Failed\n");
39 printf("Child process terminated normally!\n");
42 printf("Child process terminated as expected - Test passed!\n");
47 /* use fork() to test rte_exit() */
49 test_exit_val(int exit_val)
54 /* manually cleanup EAL memory, as the fork() below would otherwise
55 * cause the same hugepages to be free()-ed multiple times.
57 rte_service_finalize();
62 rte_exit(exit_val, __func__);
64 printf("Fork Failed\n");
68 printf("Child process status: %d\n", status);
69 #ifndef RTE_EAL_ALWAYS_PANIC_ON_ERROR
70 if(!WIFEXITED(status) || WEXITSTATUS(status) != (uint8_t)exit_val){
71 printf("Child process terminated with incorrect status (expected = %d)!\n",
82 int test_vals[] = { 0, 1, 2, 255, -1 };
84 for (i = 0; i < RTE_DIM(test_vals); i++) {
85 if (test_exit_val(test_vals[i]) < 0)
88 printf("%s Passed\n", __func__);
93 dummy_app_usage(const char *progname)
95 RTE_SET_USED(progname);
101 if (rte_set_application_usage_hook(dummy_app_usage) != NULL) {
102 printf("Non-NULL value returned for initial usage hook\n");
105 if (rte_set_application_usage_hook(NULL) != dummy_app_usage) {
106 printf("Incorrect value returned for application usage hook\n");
116 rte_dump_registers();
117 if (test_panic() < 0)
121 if (test_usage() < 0)
126 REGISTER_TEST_COMMAND(debug_autotest, test_debug);