1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00

Merge pull request #12813 from aabadie/pr/tests/malloc_lowmemory

tests/malloc: reduce default chunk size
This commit is contained in:
Alexandre Abadie 2019-11-26 16:44:37 +01:00 committed by GitHub
commit 37dc677cb6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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