From 89cf1a988cac953a86a1c9b01b912ef8195e554e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?L=C3=A1szl=C3=B3=20Lang=C3=B3?= Date: Tue, 2 Apr 2019 20:26:21 +0200 Subject: [PATCH] Run test262 test suite in both release and debug mode on Travis CI. (#2810) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The CI ran test262 test suite in release mode only to save time. This patch enables the debug testing on the test suite, which means the runtime of the "Conformance Tests" job will increase by a few minutes. JerryScript-DCO-1.0-Signed-off-by: László Langó llango.u-szeged@partner.samsung.com --- tools/run-tests.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/tools/run-tests.py b/tools/run-tests.py index 582628e4d..8dd2a5020 100755 --- a/tools/run-tests.py +++ b/tools/run-tests.py @@ -111,13 +111,14 @@ JERRY_TEST_SUITE_OPTIONS.extend([ # Test options for test262 TEST262_TEST_SUITE_OPTIONS = [ - Options('test262_tests') + Options('test262_tests'), + Options('test262_tests-debug', OPTIONS_DEBUG) ] # Test options for jerry-debugger DEBUGGER_TEST_OPTIONS = [ Options('jerry_debugger_tests', - ['--debug', '--jerry-debugger=on']) + OPTIONS_DEBUG + ['--jerry-debugger=on']) ] # Test options for buildoption-test