@@ -44,7 +44,19 @@ def get_binary_path(bin_dir_path):
44
44
'--snapshot-exec=on' , '--vm-exec-stop=on' , '--profile=es2015-subset' ]),
45
45
Options ('doctests-debug' ,
46
46
['--doctests' , '--jerry-cmdline=off' , '--debug' , '--error-messages=on' ,
47
- '--snapshot-save=on' , '--snapshot-exec=on' , '--vm-exec-stop=on' , '--profile=es2015-subset' ])
47
+ '--snapshot-save=on' , '--snapshot-exec=on' , '--vm-exec-stop=on' , '--profile=es2015-subset' ]),
48
+ Options ('unittests-es5.1' ,
49
+ ['--unittests' , '--jerry-cmdline=off' , '--error-messages=on' , '--snapshot-save=on' ,
50
+ '--snapshot-exec=on' , '--vm-exec-stop=on' , '--profile=es5.1' , '--mem-stats=on' ]),
51
+ Options ('unittests-es5.1-debug' ,
52
+ ['--unittests' , '--jerry-cmdline=off' , '--debug' , '--error-messages=on' , '--snapshot-save=on' ,
53
+ '--snapshot-exec=on' , '--vm-exec-stop=on' , '--profile=es5.1' , '--mem-stats=on' ]),
54
+ Options ('doctests-es5.1' ,
55
+ ['--doctests' , '--jerry-cmdline=off' , '--error-messages=on' , '--snapshot-save=on' ,
56
+ '--snapshot-exec=on' , '--vm-exec-stop=on' , '--profile=es5.1' ]),
57
+ Options ('doctests-es5.1-debug' ,
58
+ ['--doctests' , '--jerry-cmdline=off' , '--debug' , '--error-messages=on' ,
59
+ '--snapshot-save=on' , '--snapshot-exec=on' , '--vm-exec-stop=on' , '--profile=es5.1' ])
48
60
]
49
61
50
62
# Test options for jerry-tests
@@ -62,6 +74,8 @@ def get_binary_path(bin_dir_path):
62
74
['--snapshot' ]),
63
75
Options ('jerry_tests-es2015_subset-debug' ,
64
76
['--debug' , '--profile=es2015-subset' ]),
77
+ Options ('jerry_tests-es5.1-debug' ,
78
+ ['--debug' , '--profile=es5.1' ]),
65
79
Options ('jerry_tests-debug-external_context' ,
66
80
['--debug' , '--jerry-libc=off' , '--external-context=on' ])
67
81
]
@@ -77,7 +91,8 @@ def get_binary_path(bin_dir_path):
77
91
Options ('jerry_test_suite-minimal-debug' ,
78
92
['--debug' , '--profile=minimal' ]),
79
93
Options ('jerry_test_suite-minimal-debug-snapshot' ,
80
- ['--debug' , '--profile=minimal' , '--snapshot-save=on' , '--snapshot-exec=on' , '--jerry-cmdline-snapshot=on' ],
94
+ ['--debug' , '--profile=minimal' , '--snapshot-save=on' , '--snapshot-exec=on' ,
95
+ '--jerry-cmdline-snapshot=on' ],
81
96
['--snapshot' ]),
82
97
Options ('jerry_test_suite-es2015_subset' ,
83
98
['--profile=es2015-subset' ]),
@@ -87,6 +102,15 @@ def get_binary_path(bin_dir_path):
87
102
Options ('jerry_test_suite-es2015_subset-debug-snapshot' ,
88
103
['--debug' , '--profile=es2015-subset' , '--snapshot-save=on' , '--snapshot-exec=on' ,
89
104
'--jerry-cmdline-snapshot=on' ],
105
+ ['--snapshot' ]),
106
+ Options ('jerry_test_suite_es5.1' ,
107
+ ['--profile=es5.1' ]),
108
+ Options ('jerry_test_suite-es5.1-snapshot' ,
109
+ ['--profile=es5.1' , '--snapshot-save=on' , '--snapshot-exec=on' , '--jerry-cmdline-snapshot=on' ],
110
+ ['--snapshot' ]),
111
+ Options ('jerry_test_suite-es5.1-debug-snapshot' ,
112
+ ['--debug' , '--profile=es5.1' , '--snapshot-save=on' , '--snapshot-exec=on' ,
113
+ '--jerry-cmdline-snapshot=on' ],
90
114
['--snapshot' ])
91
115
])
92
116
0 commit comments