X-Git-Url: http://git.droids-corp.org/?a=blobdiff_plain;f=app%2Ftest%2Ftest_debug.c;h=7c3ee926c67b327455fdfaa0a948c085eeca2300;hb=a59ffe7eb952b5777419e880cb4330bb86f8d8ad;hp=0ebb7ab0bd6eebbba7de83d7d3e196de5a9f90d0;hpb=1c1d4d7a923d4804f1926fc5264f9ecdd8977b04;p=dpdk.git diff --git a/app/test/test_debug.c b/app/test/test_debug.c index 0ebb7ab0bd..7c3ee926c6 100644 --- a/app/test/test_debug.c +++ b/app/test/test_debug.c @@ -1,13 +1,13 @@ /*- * BSD LICENSE - * - * Copyright(c) 2010-2013 Intel Corporation. All rights reserved. + * + * Copyright(c) 2010-2014 Intel Corporation. All rights reserved. * All rights reserved. - * + * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: - * + * * * Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * Redistributions in binary form must reproduce the above copyright @@ -17,7 +17,7 @@ * * Neither the name of Intel Corporation nor the names of its * contributors may be used to endorse or promote products derived * from this software without specific prior written permission. - * + * * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR @@ -36,8 +36,6 @@ #include #include -#include - #include #include #include @@ -47,31 +45,9 @@ /* * Debug test * ========== - * - * - Call rte_dump_stack() and rte_dump_registers(). The result is not checked - * currently, as the functions are not implemented on baremetal. - * - Check that rte_panic() terminates the program using a non-zero error code. - * (Only implemented on linux, since it requires the fork() system call) */ -#ifdef RTE_EXEC_ENV_BAREMETAL - -/* baremetal - don't test rte_panic or rte_exit */ -static int -test_panic(void) -{ - return 0; -} - -static int -test_exit(void) -{ - return 0; -} - -#else - -/* linuxapp - use fork() to test rte_panic() */ +/* use fork() to test rte_panic() */ static int test_panic(void) { @@ -96,7 +72,7 @@ test_panic(void) return 0; } -/* linuxapp - use fork() to test rte_exit() */ +/* use fork() to test rte_exit() */ static int test_exit_val(int exit_val) { @@ -136,8 +112,6 @@ test_exit(void) return 0; } -#endif - static void dummy_app_usage(const char *progname) { @@ -158,7 +132,7 @@ test_usage(void) return 0; } -int +static int test_debug(void) { rte_dump_stack(); @@ -171,3 +145,9 @@ test_debug(void) return -1; return 0; } + +static struct test_command debug_cmd = { + .command = "debug_autotest", + .callback = test_debug, +}; +REGISTER_TEST_COMMAND(debug_cmd);