From 7f3221216d3e50c69db7d3f08595db7cfccd4424 Mon Sep 17 00:00:00 2001 From: gdisirio Date: Mon, 10 Feb 2014 15:47:18 +0000 Subject: git-svn-id: svn://svn.code.sf.net/p/chibios/svn/branches/kernel_3_dev@6698 35acf78f-673a-0410-8e92-d51de3d6d3f4 --- test/lib/templates/test_sequence_XXX.c | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) (limited to 'test/lib') diff --git a/test/lib/templates/test_sequence_XXX.c b/test/lib/templates/test_sequence_XXX.c index 6ff377e94..af16e544e 100644 --- a/test/lib/templates/test_sequence_XXX.c +++ b/test/lib/templates/test_sequence_XXX.c @@ -27,7 +27,7 @@ * Sequence detailed description. * *

Test Cases

- * - @subpage test_XXX_000 + * - @subpage test_XXX_001 * . */ @@ -42,7 +42,7 @@ #if TEST_XXX_000_CONDITION || defined(__DOXYGEN__) /** - * @page test_XXX_000 Brief description + * @page test_XXX_001 Brief description * *

Description

* Detailed description. @@ -50,7 +50,7 @@ *

Conditions

* This test is only executed if the following preprocessor condition * evaluates to true: - * - TEST_XXX_000_CONDITION + * - TEST_XXX_001_CONDITION * . * *

Test Steps

@@ -58,15 +58,15 @@ * . */ -static void test_XXX_000_setup(void) { +static void test_XXX_001_setup(void) { } -static void test_XXX_000_teardown(void) { +static void test_XXX_001_teardown(void) { } -static void test_XXX_000_execute(void) { +static void test_XXX_001_execute(void) { /* Step description.*/ test_set_step(1); @@ -74,13 +74,13 @@ static void test_XXX_000_execute(void) { } } -static const testcase_t test_XXX_000 = { +static const testcase_t test_XXX_001 = { "Brief description", - test_XXX_000_setup, - test_XXX_000_teardown, - test_XXX_000_execute + test_XXX_001_setup, + test_XXX_001_teardown, + test_XXX_001_execute }; -#endif /* TEST_XXX_000_CONDITION */ +#endif /* TEST_XXX_001_CONDITION */ /**************************************************************************** * Exported data. @@ -90,8 +90,8 @@ static const testcase_t test_XXX_000 = { * @brief Sequence brief description. */ const testcase_t * const test_sequence_XXX[] = { -#if TEST_XXX_000_CONDITION || defined(__DOXYGEN__) - &test_XXX_000, +#if TEST_XXX_001_CONDITION || defined(__DOXYGEN__) + &test_XXX_001, #endif NULL }; -- cgit v1.2.3