1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-12-25 14:33:52 +01:00

tests/malloc: reduce defaut chunk size

This allows to automatically run the test on very constrained platforms such as arduino-uno (2KB RAM)
This commit is contained in:
Alexandre Abadie 2019-11-26 15:21:47 +01:00
parent ffe208a3a4
commit 561daaab81
No known key found for this signature in database
GPG Key ID: 1C919A403CAE1405

View File

@ -28,7 +28,7 @@
#ifdef BOARD_NATIVE
#define CHUNK_SIZE (1024 * 1024U)
#else
#define CHUNK_SIZE (1024U)
#define CHUNK_SIZE (512U)
#endif
#endif