summaryrefslogtreecommitdiff
path: root/test/grow_memory.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'test/grow_memory.cpp')
-rw-r--r--test/grow_memory.cpp13
1 files changed, 4 insertions, 9 deletions
diff --git a/test/grow_memory.cpp b/test/grow_memory.cpp
index b8f732f7a..22703e048 100644
--- a/test/grow_memory.cpp
+++ b/test/grow_memory.cpp
@@ -1,20 +1,15 @@
+#include <emscripten.h>
#include <stdio.h>
#include <stdlib.h>
-#include <emscripten.h>
volatile int writeOnly;
int main() {
- EM_ASM({
- assert(HEAPU8.length === 16*1024*1024);
- });
+ EM_ASM({ assert(HEAPU8.length == = 16 * 1024 * 1024); });
for (int i = 0; i < 20; i++) {
printf("alloc 1MB: %d\n", i);
- writeOnly = (int)malloc(1024*1024);
+ writeOnly = (int)malloc(1024 * 1024);
}
- EM_ASM({
- assert(HEAPU8.length > 16*1024*1024);
- });
+ EM_ASM({ assert(HEAPU8.length > 16 * 1024 * 1024); });
printf("ok.\n");
}
-