diff --git a/tests/test262-esnext-excludelist.xml b/tests/test262-esnext-excludelist.xml
index e6d1fe4af..923aed867 100644
--- a/tests/test262-esnext-excludelist.xml
+++ b/tests/test262-esnext-excludelist.xml
@@ -113,14 +113,6 @@
-
-
-
-
-
-
-
-
diff --git a/tools/run-tests.py b/tools/run-tests.py
index 3316e7716..46f5d5466 100755
--- a/tools/run-tests.py
+++ b/tools/run-tests.py
@@ -108,7 +108,8 @@ TEST262_ES2015_TEST_SUITE_OPTIONS = [
# Test options for test262-esnext
TEST262_ESNEXT_TEST_SUITE_OPTIONS = [
- Options('test262_tests_esnext', OPTIONS_PROFILE_ESNEXT + ['--line-info=on', '--error-messages=on']),
+ Options('test262_tests_esnext', OPTIONS_PROFILE_ESNEXT
+ + ['--line-info=on', '--error-messages=on', '--mem-heap=20480']),
]
# Test options for jerry-debugger
diff --git a/tools/runners/run-test-suite-test262.py b/tools/runners/run-test-suite-test262.py
index ff7bb4c08..020b6548e 100755
--- a/tools/runners/run-test-suite-test262.py
+++ b/tools/runners/run-test-suite-test262.py
@@ -176,7 +176,7 @@ def main(args):
if args.es2015 or args.esnext:
try:
subprocess.check_output(["timeout", "--version"])
- command = "timeout 3 " + command
+ command = "timeout 5 " + command
except subprocess.CalledProcessError:
pass