From 34fd822f84d409fa649934251fae01994de7888b Mon Sep 17 00:00:00 2001 From: gdisirio Date: Sat, 17 Oct 2009 09:21:59 +0000 Subject: git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@1226 35acf78f-673a-0410-8e92-d51de3d6d3f4 --- test/test.h | 2 ++ test/testheap.c | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) (limited to 'test') diff --git a/test/test.h b/test/test.h index 7b261b553..c31caf633 100644 --- a/test/test.h +++ b/test/test.h @@ -47,6 +47,7 @@ struct testcase { void (*execute)(void); }; +#ifndef __DOXYGEN__ union test_buffers { struct { WORKING_AREA(waT0, THREADS_STACK_SIZE); @@ -57,6 +58,7 @@ union test_buffers { }; uint8_t buffer[WA_SIZE * 5]; }; +#endif #ifdef __cplusplus extern "C" { diff --git a/test/testheap.c b/test/testheap.c index ba839e6d4..ce127d2be 100644 --- a/test/testheap.c +++ b/test/testheap.c @@ -85,7 +85,7 @@ static void heap1_execute(void) { p1 = chHeapAlloc(NULL, SIZE); test_assert(1, p1 != NULL, "allocation failed"); chHeapFree(p1); - p1 = chHeapAlloc(NULL, 0x1000000); + p1 = chHeapAlloc(NULL, (size_t)-256); test_assert(2, p1 == NULL, "allocation not failed"); /* Initial local heap state.*/ -- cgit v1.2.3