1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2026-01-01 01:41:18 +01:00

tests/malloc: reduce chunk size to 128b

Otherwise, the test fails on z1 (with no allocations).
This commit is contained in:
Kaspar Schleiser 2020-07-21 13:21:38 +02:00
parent 107356ec5d
commit da898e649c

View File

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