diff options
author | Peter D'Hoye <peter.dhoye@gmail.com> | 2009-05-24 21:28:16 +0000 |
---|---|---|
committer | Peter D'Hoye <peter.dhoye@gmail.com> | 2009-05-24 21:28:16 +0000 |
commit | 526b5580dabbfed7cfe5439dc3a90ec727f563c2 (patch) | |
tree | 22b1af92348785daad16714ee5e2b633017e0e48 /apps/plugins/pdbox/dbestfit-3.3/dmytest.c | |
parent | 4f2dfcc01b260d946044ef2b6af5fe36cb772c8d (diff) | |
download | rockbox-526b5580dabbfed7cfe5439dc3a90ec727f563c2.tar.gz rockbox-526b5580dabbfed7cfe5439dc3a90ec727f563c2.zip |
Cut the files in half and it might work better (note to self: check your tree is really clean before patching)
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@21070 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugins/pdbox/dbestfit-3.3/dmytest.c')
-rw-r--r-- | apps/plugins/pdbox/dbestfit-3.3/dmytest.c | 138 |
1 files changed, 0 insertions, 138 deletions
diff --git a/apps/plugins/pdbox/dbestfit-3.3/dmytest.c b/apps/plugins/pdbox/dbestfit-3.3/dmytest.c index 46d4c73efd..ed12686b3d 100644 --- a/apps/plugins/pdbox/dbestfit-3.3/dmytest.c +++ b/apps/plugins/pdbox/dbestfit-3.3/dmytest.c | |||
@@ -136,141 +136,3 @@ int main(int argc, char **argv) | |||
136 | #endif | 136 | #endif |
137 | return 0; | 137 | return 0; |
138 | } | 138 | } |
139 | #include <stdio.h> | ||
140 | #include <stdlib.h> | ||
141 | |||
142 | #include "dmalloc.h" | ||
143 | |||
144 | #define MAX 500 | ||
145 | #define MAX2 1000 | ||
146 | #define MAXC 2 | ||
147 | |||
148 | #define TESTA | ||
149 | #define TESTB | ||
150 | #define TESTC | ||
151 | #define TESTD | ||
152 | |||
153 | int main(int argc, char **argv) | ||
154 | { | ||
155 | int i; | ||
156 | int memory = 0; | ||
157 | |||
158 | #ifdef BMALLOC | ||
159 | #define HEAP 10000 | ||
160 | void *heap = (malloc)(HEAP); | ||
161 | if(!heap) | ||
162 | return -1; | ||
163 | add_pool(heap, HEAP); | ||
164 | #endif | ||
165 | |||
166 | { | ||
167 | #define MAXK 100 | ||
168 | void *wow[MAXK]; | ||
169 | wow[0]=malloc(700); | ||
170 | realloc(wow[0], 680); | ||
171 | return 0; | ||
172 | |||
173 | for(i=0; i<MAXK; i++) | ||
174 | if(!(wow[i]=malloc(412))) { | ||
175 | printf("*** Couldn't allocated memory, exiting\n"); | ||
176 | return -2; | ||
177 | } | ||
178 | for(i=MAXK-1; i>=0; i-=2) | ||
179 | free(wow[i]); | ||
180 | return 0; | ||
181 | } | ||
182 | |||
183 | |||
184 | #ifdef TESTD | ||
185 | { | ||
186 | #define MAXS 10 | ||
187 | #define MAXS1 0 | ||
188 | void *ptr[MAXS]; | ||
189 | |||
190 | for(i=MAXS1; i< MAXS; i++) { | ||
191 | printf("%d malloc(%d)\n", i, i*55); | ||
192 | ptr[i] = malloc (i*55); | ||
193 | } | ||
194 | for(i=MAXS1; i< MAXS; i++) { | ||
195 | void *tmp; | ||
196 | printf("%d realloc(%d)\n", i, i*155); | ||
197 | tmp=realloc(ptr[i], i*155); | ||
198 | if(tmp) | ||
199 | ptr[i] = tmp; | ||
200 | } | ||
201 | for(i=MAXS1; i< MAXS; i++) { | ||
202 | printf("%d free(%d)\n", i, i*155); | ||
203 | free(ptr[i]); | ||
204 | } | ||
205 | } | ||
206 | #endif | ||
207 | |||
208 | #ifdef TESTC | ||
209 | { | ||
210 | void *ptr[MAXC]; | ||
211 | printf("This is test C:\n"); | ||
212 | |||
213 | for(i=0; i< MAXC; i++) { | ||
214 | printf("%d malloc(100)\n", i+1); | ||
215 | ptr[i] = malloc(100); | ||
216 | printf(" ...returned %p\n", ptr[i]); | ||
217 | } | ||
218 | |||
219 | for(i=0; i< MAXC; i++) { | ||
220 | printf("%d free()\n", i+1); | ||
221 | free(ptr[i]); | ||
222 | } | ||
223 | |||
224 | printf("End of test C:\n"); | ||
225 | } | ||
226 | #endif | ||
227 | |||
228 | #ifdef TESTA | ||
229 | { | ||
230 | void *pointers[MAX]; | ||
231 | printf("This is test I:\n"); | ||
232 | |||
233 | for(i=0; i<MAX; i++) { | ||
234 | printf("%d attempts malloc(%d)\n", i, i*6); | ||
235 | pointers[i]=malloc(i*6); | ||
236 | if(!pointers[i]) { | ||
237 | printf("cant get more memory!"); | ||
238 | return(0); | ||
239 | } | ||
240 | memory += (i*6); | ||
241 | } | ||
242 | printf("\namount: %d\n", memory); | ||
243 | memory = 0; | ||
244 | for(i=0; i<MAX; i++) { | ||
245 | printf("%d attempts realloc(%d)\n", i, i*7); | ||
246 | pointers[i]=realloc(pointers[i], i*7); | ||
247 | memory += i*7; | ||
248 | } | ||
249 | printf("\namount: %d\n", memory); | ||
250 | for(i=0; i<MAX; i++) { | ||
251 | printf("%d attempts free(%d)\n", i, i*7); | ||
252 | free(pointers[i]); | ||
253 | } | ||
254 | printf("\nend of test 1\n"); | ||
255 | } | ||
256 | #endif | ||
257 | #ifdef TESTB | ||
258 | { | ||
259 | void *pointers2[MAX2]; | ||
260 | memory = 0; | ||
261 | printf("\nTest II\n"); | ||
262 | for(i=0; i< MAX2; i++) { | ||
263 | /* printf("%d attempts malloc(%d)\n", i, 7); */ | ||
264 | pointers2[i] = malloc(7); | ||
265 | memory += 7; | ||
266 | } | ||
267 | printf("\namount: %d\n", memory); | ||
268 | for(i=0; i< MAX2; i++) { | ||
269 | free(pointers2[i]); | ||
270 | } | ||
271 | printf("\nend of test II\n"); | ||
272 | |||
273 | } | ||
274 | #endif | ||
275 | return 0; | ||
276 | } | ||