diff options
author | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2009-02-18 12:58:35 +0000 |
---|---|---|
committer | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2009-02-18 12:58:35 +0000 |
commit | 4c2be4a8e9211f53e3b460de2ad5e9d3e4be70c8 (patch) | |
tree | ff9d69f7b2528008d5410895cf979cf158e918fb /test/testpools.c | |
parent | 6b6e5b95fb78af5f4c018c74b54b15a82b32d812 (diff) | |
download | ChibiOS-4c2be4a8e9211f53e3b460de2ad5e9d3e4be70c8.tar.gz ChibiOS-4c2be4a8e9211f53e3b460de2ad5e9d3e4be70c8.tar.bz2 ChibiOS-4c2be4a8e9211f53e3b460de2ad5e9d3e4be70c8.zip |
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@781 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'test/testpools.c')
-rw-r--r-- | test/testpools.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/testpools.c b/test/testpools.c index fae7402c3..759a28c44 100644 --- a/test/testpools.c +++ b/test/testpools.c @@ -44,10 +44,10 @@ static void pools1_execute(void) { /* Empting the pool again. */
for (i = 0; i < MAX_THREADS; i++)
- test_assert(chPoolAlloc(&mp1) != NULL, "pool list empty");
+ test_assert(chPoolAlloc(&mp1) != NULL, "#1"); /* Pool list empty.*/
/* Now must be empty. */
- test_assert(chPoolAlloc(&mp1) == NULL, "pool list not empty");
+ test_assert(chPoolAlloc(&mp1) == NULL, "#2"); /* Pool list not empty.*/
}
const struct testcase testpools1 = {
|