Add a simple heap test.
authorbatt <batt@38d2e660-2303-0410-9eaa-f027e97ec537>
Wed, 23 Dec 2009 16:50:13 +0000 (16:50 +0000)
committerbatt <batt@38d2e660-2303-0410-9eaa-f027e97ec537>
Wed, 23 Dec 2009 16:50:13 +0000 (16:50 +0000)
git-svn-id: https://src.develer.com/svnoss/bertos/trunk@3128 38d2e660-2303-0410-9eaa-f027e97ec537

bertos/struct/heap_test.c [new file with mode: 0644]
test/run_tests.sh

diff --git a/bertos/struct/heap_test.c b/bertos/struct/heap_test.c
new file mode 100644 (file)
index 0000000..6aee004
--- /dev/null
@@ -0,0 +1,91 @@
+/**
+ * \file
+ * <!--
+ * This file is part of BeRTOS.
+ *
+ * Bertos 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 2 of the License, or
+ * (at your option) any later version.
+ *
+ * This program 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, write to the Free Software
+ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
+ *
+ * As a special exception, you may use this file as part of a free software
+ * library without restriction.  Specifically, if other files instantiate
+ * templates or use macros or inline functions from this file, or you compile
+ * this file and link it with other files to produce an executable, this
+ * file does not by itself cause the resulting executable to be covered by
+ * the GNU General Public License.  This exception does not however
+ * invalidate any other reasons why the executable file might be covered by
+ * the GNU General Public License.
+ *
+ * Copyright 2009 Develer S.r.l. (http://www.develer.com/)
+ *
+ * -->
+ *
+ * \brief Heap test.
+ *
+ * \author Francesco Sacchi <batt@codewiz.org>
+ */
+
+
+#include <struct/fifobuf.h>
+#include <struct/heap.h>
+
+#include <cfg/compiler.h>
+#include <cfg/test.h>
+#include <cfg/debug.h>
+
+#define TEST_LEN 31
+#define ALLOC_SIZE 113
+
+HEAP_DEFINE_BUF(heap_buf, 4027);
+STATIC_ASSERT(sizeof(heap_buf) % sizeof(heap_buf_t) == 0);
+
+Heap h;
+
+int heap_testSetup(void)
+{
+       kdbg_init();
+       heap_init(&h, heap_buf, sizeof(heap_buf));
+       return 0;
+}
+
+int heap_testRun(void)
+{
+       //Simple test
+       uint8_t *a[TEST_LEN];
+       for (int i = 0; i < TEST_LEN; i++)
+       {
+               a[i] = heap_allocmem(&h, ALLOC_SIZE);
+               ASSERT(a[i]);
+               for (int j = 0; j < ALLOC_SIZE; j++)
+                       a[i][j] = i;
+       }
+
+       for (int i = 0; i < TEST_LEN; i++)
+       {
+               for (int j = 0; j < ALLOC_SIZE; j++)
+               {
+                       kprintf("a[%d][%d] = %d\n", i, j, a[i][j]);
+                       ASSERT(a[i][j] == i);
+               }
+               heap_freemem(&h, a[i], ALLOC_SIZE);
+       }
+
+       return 0;
+}
+
+int heap_testTearDown(void)
+{
+       return 0;
+}
+
+TEST_MAIN(heap);
index 8ffa6650594f1c71dd5f84d138f6008075fe44d2..ed6ee007a9566b107ba553ba00c0aa38eaf46d8a 100755 (executable)
@@ -47,6 +47,7 @@ SRC_LIST="
        bertos/mware/sprintf.c
        bertos/os/hptime.c
        bertos/struct/kfile_fifo.c
+       bertos/struct/heap.c
        bertos/fs/fatfs/ff.c
        bertos/emul/diskio_emul.c
        bertos/fs/fat.c