@@ -50,6 +50,7 @@ def skip_if(condition, desc):
50
50
OPTIONS_DOCTESTS = ['--doctests=on' , '--jerry-cmdline=off' , '--error-messages=on' ,
51
51
'--snapshot-save=on' , '--snapshot-exec=on' , '--vm-exec-stop=on' ]
52
52
OPTIONS_PROMISE_CALLBACK = ['--promise-callback=on' ]
53
+ OPTIONS_HEAP_SIZE = ['--mem-heap=1024' ]
53
54
54
55
# Test options for unittests
55
56
JERRY_UNITTESTS_OPTIONS = [
@@ -67,15 +68,15 @@ def skip_if(condition, desc):
67
68
# Test options for jerry-tests
68
69
JERRY_TESTS_OPTIONS = [
69
70
Options ('jerry_tests' ,
70
- OPTIONS_COMMON + OPTIONS_STACK_LIMIT + OPTIONS_GC_MARK_LIMIT + OPTIONS_MEM_STRESS ),
71
+ OPTIONS_COMMON + OPTIONS_STACK_LIMIT + OPTIONS_HEAP_SIZE + OPTIONS_GC_MARK_LIMIT + OPTIONS_MEM_STRESS ),
71
72
Options ('jerry_tests-snapshot' ,
72
- OPTIONS_COMMON + OPTIONS_SNAPSHOT + OPTIONS_STACK_LIMIT + OPTIONS_GC_MARK_LIMIT ,
73
+ OPTIONS_COMMON + OPTIONS_SNAPSHOT + OPTIONS_HEAP_SIZE + OPTIONS_STACK_LIMIT + OPTIONS_GC_MARK_LIMIT ,
73
74
['--snapshot' ]),
74
75
Options ('jerry_tests-cpointer_32bit' ,
75
- OPTIONS_COMMON + OPTIONS_STACK_LIMIT + OPTIONS_GC_MARK_LIMIT
76
- + ['--cpointer-32bit=on' , '--mem-heap=1024' ]),
76
+ OPTIONS_COMMON + OPTIONS_STACK_LIMIT + OPTIONS_HEAP_SIZE + OPTIONS_GC_MARK_LIMIT
77
+ + ['--cpointer-32bit=on' ]),
77
78
Options ('jerry_tests-external_context' ,
78
- OPTIONS_COMMON + OPTIONS_STACK_LIMIT + OPTIONS_GC_MARK_LIMIT
79
+ OPTIONS_COMMON + OPTIONS_STACK_LIMIT + OPTIONS_HEAP_SIZE + OPTIONS_GC_MARK_LIMIT
79
80
+ ['--external-context=on' ]),
80
81
]
81
82
0 commit comments