@@ -50,6 +50,7 @@ def skip_if(condition, desc):
5050OPTIONS_DOCTESTS = ['--doctests=on' , '--jerry-cmdline=off' , '--error-messages=on' ,
5151 '--snapshot-save=on' , '--snapshot-exec=on' , '--vm-exec-stop=on' ]
5252OPTIONS_PROMISE_CALLBACK = ['--promise-callback=on' ]
53+ OPTIONS_HEAP_SIZE = ['--mem-heap=1024' ]
5354
5455# Test options for unittests
5556JERRY_UNITTESTS_OPTIONS = [
@@ -67,15 +68,15 @@ def skip_if(condition, desc):
6768# Test options for jerry-tests
6869JERRY_TESTS_OPTIONS = [
6970 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 ),
7172 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 ,
7374 ['--snapshot' ]),
7475 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' ]),
7778 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
7980 + ['--external-context=on' ]),
8081]
8182
0 commit comments