aboutsummaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorgdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2009-10-17 09:21:59 +0000
committergdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2009-10-17 09:21:59 +0000
commit34fd822f84d409fa649934251fae01994de7888b (patch)
tree095f9c11f7aa2e5f2c0b451c1ba15b08d76f5c47 /test
parenta7cfbdaf10a03aa10236958bdba38479b301fc4f (diff)
downloadChibiOS-34fd822f84d409fa649934251fae01994de7888b.tar.gz
ChibiOS-34fd822f84d409fa649934251fae01994de7888b.tar.bz2
ChibiOS-34fd822f84d409fa649934251fae01994de7888b.zip
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@1226 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'test')
-rw-r--r--test/test.h2
-rw-r--r--test/testheap.c2
2 files changed, 3 insertions, 1 deletions
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.*/