aboutsummaryrefslogtreecommitdiff
path: root/tests/websockets_bigdata.h
diff options
context:
space:
mode:
Diffstat (limited to 'tests/websockets_bigdata.h')
-rw-r--r--tests/websockets_bigdata.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/websockets_bigdata.h b/tests/websockets_bigdata.h
index fa1a6b17..17149ad6 100644
--- a/tests/websockets_bigdata.h
+++ b/tests/websockets_bigdata.h
@@ -1,11 +1,11 @@
#include <stdlib.h>
-#define DATA_SIZE 1250
+#define DATA_SIZE (256*256*2)
// 1500 fails
char *generateData() {
- char *ret = malloc(65536*2);
+ char *ret = malloc(256*256*2);
char *curr = ret;
for (int i = 0; i < 256; i++) {
for (int j = 0; j < 256; j++) {