2008-08-26 14:43:09 +00:00
|
|
|
/*
|
2011-03-18 18:38:08 +00:00
|
|
|
ChibiOS/RT - Copyright (C) 2006,2007,2008,2009,2010,
|
|
|
|
2011 Giovanni Di Sirio.
|
2008-08-26 14:43:09 +00:00
|
|
|
|
|
|
|
This file is part of ChibiOS/RT.
|
|
|
|
|
|
|
|
ChibiOS/RT is free software; you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation; either version 3 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
ChibiOS/RT is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
2009-12-08 17:37:49 +00:00
|
|
|
#include "ch.h"
|
2008-08-26 14:43:09 +00:00
|
|
|
#include "test.h"
|
|
|
|
|
2009-05-09 16:46:49 +00:00
|
|
|
/**
|
|
|
|
* @page test_pools Memory Pools test
|
|
|
|
*
|
2010-04-27 11:53:03 +00:00
|
|
|
* File: @ref testpools.c
|
|
|
|
*
|
2009-05-09 16:46:49 +00:00
|
|
|
* <h2>Description</h2>
|
2009-08-30 06:59:43 +00:00
|
|
|
* This module implements the test sequence for the @ref pools subsystem.
|
2009-05-09 16:46:49 +00:00
|
|
|
*
|
|
|
|
* <h2>Objective</h2>
|
2009-08-30 06:59:43 +00:00
|
|
|
* Objective of the test module is to cover 100% of the @ref pools code.
|
2009-05-09 16:46:49 +00:00
|
|
|
*
|
|
|
|
* <h2>Preconditions</h2>
|
|
|
|
* The module requires the following kernel options:
|
|
|
|
* - @p CH_USE_MEMPOOLS
|
|
|
|
* .
|
|
|
|
* In case some of the required options are not enabled then some or all tests
|
|
|
|
* may be skipped.
|
|
|
|
*
|
|
|
|
* <h2>Test Cases</h2>
|
|
|
|
* - @subpage test_pools_001
|
|
|
|
* .
|
|
|
|
* @file testpools.c
|
|
|
|
* @brief Memory Pools test source file
|
|
|
|
* @file testpools.h
|
|
|
|
* @brief Memory Pools test header file
|
|
|
|
*/
|
|
|
|
|
2011-03-23 13:12:41 +00:00
|
|
|
#if CH_USE_MEMPOOLS || defined(__DOXYGEN__)
|
2008-08-26 14:43:09 +00:00
|
|
|
|
2009-10-20 17:26:27 +00:00
|
|
|
static MEMORYPOOL_DECL(mp1, THD_WA_SIZE(THREADS_STACK_SIZE), NULL);
|
2008-08-26 14:43:09 +00:00
|
|
|
|
2009-05-09 16:46:49 +00:00
|
|
|
/**
|
|
|
|
* @page test_pools_001 Allocation and enqueuing test
|
|
|
|
*
|
|
|
|
* <h2>Description</h2>
|
|
|
|
* Five memory blocks are added to a memory pool then removed.<br>
|
|
|
|
* The test expects to find the pool queue in the proper status after each
|
|
|
|
* operation.
|
|
|
|
*/
|
|
|
|
|
2010-05-04 12:31:05 +00:00
|
|
|
static void *null_provider(size_t size) {
|
|
|
|
|
2010-05-04 19:55:26 +00:00
|
|
|
(void)size;
|
2010-05-04 12:31:05 +00:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2008-08-26 14:43:09 +00:00
|
|
|
static void pools1_setup(void) {
|
|
|
|
|
2009-10-20 17:26:27 +00:00
|
|
|
chPoolInit(&mp1, THD_WA_SIZE(THREADS_STACK_SIZE), NULL);
|
2008-08-26 14:43:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void pools1_execute(void) {
|
|
|
|
int i;
|
|
|
|
|
|
|
|
/* Adding the WAs to the pool. */
|
2008-09-23 18:04:28 +00:00
|
|
|
for (i = 0; i < MAX_THREADS; i++)
|
2008-08-26 14:43:09 +00:00
|
|
|
chPoolFree(&mp1, wa[i]);
|
|
|
|
|
|
|
|
/* Empting the pool again. */
|
2008-09-23 18:04:28 +00:00
|
|
|
for (i = 0; i < MAX_THREADS; i++)
|
2009-04-25 11:12:10 +00:00
|
|
|
test_assert(1, chPoolAlloc(&mp1) != NULL, "list empty");
|
2008-08-26 14:43:09 +00:00
|
|
|
|
|
|
|
/* Now must be empty. */
|
2009-04-25 11:12:10 +00:00
|
|
|
test_assert(2, chPoolAlloc(&mp1) == NULL, "list not empty");
|
2010-05-04 12:31:05 +00:00
|
|
|
|
|
|
|
/* Covering the case where a provider is unable to return more memory.*/
|
|
|
|
chPoolInit(&mp1, 16, null_provider);
|
|
|
|
test_assert(3, chPoolAlloc(&mp1) == NULL, "provider returned memory");
|
2008-08-26 14:43:09 +00:00
|
|
|
}
|
|
|
|
|
2010-06-25 08:55:40 +00:00
|
|
|
ROMCONST struct testcase testpools1 = {
|
2010-06-15 11:34:16 +00:00
|
|
|
"Memory Pools, queue/dequeue",
|
2008-08-26 14:43:09 +00:00
|
|
|
pools1_setup,
|
2009-02-16 18:22:49 +00:00
|
|
|
NULL,
|
2008-08-26 14:43:09 +00:00
|
|
|
pools1_execute
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif /* CH_USE_MEMPOOLS */
|
2009-02-16 18:22:49 +00:00
|
|
|
|
|
|
|
/*
|
2010-04-27 11:53:03 +00:00
|
|
|
* @brief Test sequence for pools.
|
2009-02-16 18:22:49 +00:00
|
|
|
*/
|
2010-06-25 08:55:40 +00:00
|
|
|
ROMCONST struct testcase * ROMCONST patternpools[] = {
|
2011-03-23 13:12:41 +00:00
|
|
|
#if CH_USE_MEMPOOLS || defined(__DOXYGEN__)
|
2009-02-16 18:22:49 +00:00
|
|
|
&testpools1,
|
|
|
|
#endif
|
|
|
|
NULL
|
|
|
|
};
|