summaryrefslogtreecommitdiff
path: root/firmware/test/buflib/test_max.c
diff options
context:
space:
mode:
Diffstat (limited to 'firmware/test/buflib/test_max.c')
-rw-r--r--firmware/test/buflib/test_max.c75
1 files changed, 0 insertions, 75 deletions
diff --git a/firmware/test/buflib/test_max.c b/firmware/test/buflib/test_max.c
deleted file mode 100644
index 5378fcf6bd..0000000000
--- a/firmware/test/buflib/test_max.c
+++ /dev/null
@@ -1,75 +0,0 @@
1/***************************************************************************
2* __________ __ ___.
3* Open \______ \ ____ ____ | | _\_ |__ _______ ___
4* Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5* Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6* Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
7* \/ \/ \/ \/ \/
8* $Id$
9*
10* Copyright (C) 2011 Thomas Martitz
11*
12* This program is free software; you can redistribute it and/or
13* modify it under the terms of the GNU General Public License
14* as published by the Free Software Foundation; either version 2
15* of the License, or (at your option) any later version.
16*
17* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
18* KIND, either express or implied.
19*
20****************************************************************************/
21#include <stdio.h>
22#include "core_alloc.h"
23#include "util.h"
24
25
26/*
27 * Expected output (64bit):
28-------------------
29get_all(1): 0x6027a0
30 0x6027c8
31 6424
32get_all(1): 0x6027a0
33 0x6027c8
34 3232
35get_all(1): 0x6027a0
36 0x6027c8
37 3232
38dont freeze(2): 0x603440
39 0x603470
40 152
410x6027a0: val: 404 (get_all)
420x603440: val: 19 (dont freeze)
43-------------------
44*/
45struct buflib_callbacks ops;
46int main(void)
47{
48 UT_core_allocator_init();
49 size_t size;
50 int handle = core_alloc_maximum("get_all", &size, &ops);
51
52 if (handle <= 0)
53 printf("core_alloc_maximum error\n");
54 int handle2;
55
56 core_print_allocs(&print_simple);
57
58 /* this should freeze */
59 // core_alloc("freeze", 100);
60 core_shrink(handle, core_get_data(handle), size/2);
61
62 core_print_allocs(&print_simple);
63
64 /* this should not freeze anymore */
65 handle2 = core_alloc("dont freeze", 100);
66 if (handle2 <= 0)
67 printf("handle 2 failed!\n");
68
69 core_print_allocs(&print_simple);
70 core_print_blocks(&print_simple);
71
72 core_free(handle);
73 core_free(handle2);
74 return 0;
75}