aboutsummaryrefslogtreecommitdiff
path: root/tests/dlmalloc.c
diff options
context:
space:
mode:
authorAlon Zakai <alonzakai@gmail.com>2011-03-15 20:13:57 -0700
committerAlon Zakai <alonzakai@gmail.com>2011-03-15 20:13:57 -0700
commit5524f8bf30941862789eadef176b254fe3186cdf (patch)
treed0fed0756943a15ac4ee6a259a8f462c92a8c543 /tests/dlmalloc.c
parent6c22a66671b6f42ad63044b0fd46a5dc892298b4 (diff)
stop using lots of memory to manage strings at the end of compilation
Diffstat (limited to 'tests/dlmalloc.c')
-rw-r--r--tests/dlmalloc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/dlmalloc.c b/tests/dlmalloc.c
index 78ab20aa..c8fce144 100644
--- a/tests/dlmalloc.c
+++ b/tests/dlmalloc.c
@@ -5701,7 +5701,7 @@ History:
// Emscripten tests
int main() {
- #define NUM 100
+ #define NUM 10
char* allocations[NUM];
for (int i = 0; i < NUM; i++) {
allocations[i] = (char*)malloc(1024*(i+1));