From cc270decf28df15e594f3e8a979872e328400b04 Mon Sep 17 00:00:00 2001 From: Artem Udovichenko Date: Tue, 8 Nov 2022 15:16:39 +0300 Subject: [PATCH] Change GC type from stw to g1 in some JS tests Change-Id: I536822afeb342224ae23d2420d9d33f790468739 Signed-off-by: Artem Udovichenko --- tests/runtime/common/js_infinite_recursion/CMakeLists.txt | 2 +- tests/runtime/common/js_typed_arrays/CMakeLists.txt | 2 +- tests/runtime/common/recursive_array/CMakeLists.txt | 2 +- tests/runtime/common/spread_primitives/CMakeLists.txt | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/tests/runtime/common/js_infinite_recursion/CMakeLists.txt b/tests/runtime/common/js_infinite_recursion/CMakeLists.txt index 832f76eb9..e921b2544 100644 --- a/tests/runtime/common/js_infinite_recursion/CMakeLists.txt +++ b/tests/runtime/common/js_infinite_recursion/CMakeLists.txt @@ -6,7 +6,7 @@ set(JS_INFINITE_RECURSION_PA ${CMAKE_CURRENT_BINARY_DIR}/js_infinite_recursion.p set(JS_INFINITE_RECURSION_JS ${CMAKE_CURRENT_SOURCE_DIR}/js_infinite_recursion.js) set(JS_INFINITE_RECURSION_VERIFY ${CMAKE_CURRENT_SOURCE_DIR}/verify.sh) -set(RUNTIME_ARGUMENTS --boot-panda-files=${PANDA_BINARY_ROOT}/pandastdlib/arkstdlib.abc --load-runtimes=\"ecmascript\" --compiler-enable-jit=false --gc-type=stw --run-gc-in-place ${JS_INFINITE_RECURSION_BIN} _GLOBAL::func_main_0) +set(RUNTIME_ARGUMENTS --boot-panda-files=${PANDA_BINARY_ROOT}/pandastdlib/arkstdlib.abc --load-runtimes=\"ecmascript\" --compiler-enable-jit=false --run-gc-in-place ${JS_INFINITE_RECURSION_BIN} _GLOBAL::func_main_0) add_custom_command( OUTPUT ${JS_INFINITE_RECURSION_OUTPUT} diff --git a/tests/runtime/common/js_typed_arrays/CMakeLists.txt b/tests/runtime/common/js_typed_arrays/CMakeLists.txt index fec452855..5528ad530 100644 --- a/tests/runtime/common/js_typed_arrays/CMakeLists.txt +++ b/tests/runtime/common/js_typed_arrays/CMakeLists.txt @@ -5,7 +5,7 @@ set(JS_TYPED_ARRAYS_BIN ${CMAKE_CURRENT_BINARY_DIR}/js_typed_arrays.abc) set(JS_TYPED_ARRAYS_JS ${CMAKE_CURRENT_SOURCE_DIR}/js_typed_arrays.js) set(JS_TYPED_ARRAYS_VERIFY ${CMAKE_CURRENT_SOURCE_DIR}/verify.sh) -set(RUNTIME_ARGUMENTS --boot-panda-files=${CMAKE_BINARY_DIR}/pandastdlib/arkstdlib.abc --boot-class-spaces=\"ecmascript\" --compiler-enable-jit=false --gc-type=stw --run-gc-in-place --runtime-type \"ecmascript\" ${JS_TYPED_ARRAYS_BIN} _GLOBAL::func_main_0) +set(RUNTIME_ARGUMENTS --boot-panda-files=${CMAKE_BINARY_DIR}/pandastdlib/arkstdlib.abc --boot-class-spaces=\"ecmascript\" --compiler-enable-jit=false --run-gc-in-place --runtime-type \"ecmascript\" ${JS_TYPED_ARRAYS_BIN} _GLOBAL::func_main_0) add_custom_command( OUTPUT ${JS_TYPED_ARRAYS_OUTPUT} diff --git a/tests/runtime/common/recursive_array/CMakeLists.txt b/tests/runtime/common/recursive_array/CMakeLists.txt index c99e4cc99..23407cfa2 100644 --- a/tests/runtime/common/recursive_array/CMakeLists.txt +++ b/tests/runtime/common/recursive_array/CMakeLists.txt @@ -5,7 +5,7 @@ set(RECURSIVE_ARRAY_BIN ${CMAKE_CURRENT_BINARY_DIR}/recursive_array.abc) set(RECURSIVE_ARRAY_JS ${CMAKE_CURRENT_SOURCE_DIR}/recursive_array.js) set(RECURSIVE_ARRAY_VERIFY ${CMAKE_CURRENT_SOURCE_DIR}/verify.sh) -set(RUNTIME_ARGUMENTS --boot-panda-files=${CMAKE_BINARY_DIR}/pandastdlib/arkstdlib.abc --boot-class-spaces=\"ecmascript\" --compiler-enable-jit=false --gc-type=stw --run-gc-in-place --runtime-type \"ecmascript\" ${RECURSIVE_ARRAY_BIN} _GLOBAL::func_main_0) +set(RUNTIME_ARGUMENTS --boot-panda-files=${CMAKE_BINARY_DIR}/pandastdlib/arkstdlib.abc --boot-class-spaces=\"ecmascript\" --compiler-enable-jit=false --run-gc-in-place --runtime-type \"ecmascript\" ${RECURSIVE_ARRAY_BIN} _GLOBAL::func_main_0) add_custom_command( OUTPUT ${RECURSIVE_ARRAY_OUTPUT} diff --git a/tests/runtime/common/spread_primitives/CMakeLists.txt b/tests/runtime/common/spread_primitives/CMakeLists.txt index 73b1441cc..a67082419 100644 --- a/tests/runtime/common/spread_primitives/CMakeLists.txt +++ b/tests/runtime/common/spread_primitives/CMakeLists.txt @@ -5,7 +5,7 @@ set(SPREAD_PRIMITIVES_BIN ${CMAKE_CURRENT_BINARY_DIR}/spread_primitives.abc) set(SPREAD_PRIMITIVES_JS ${CMAKE_CURRENT_SOURCE_DIR}/spread_primitives.js) set(SPREAD_PRIMITIVES_VERIFY ${CMAKE_CURRENT_SOURCE_DIR}/verify.sh) -set(RUNTIME_ARGUMENTS --boot-panda-files=${CMAKE_BINARY_DIR}/pandastdlib/arkstdlib.abc --boot-class-spaces=\"ecmascript\" --compiler-enable-jit=false --gc-type=stw --run-gc-in-place --runtime-type \"ecmascript\" ${SPREAD_PRIMITIVES_BIN} _GLOBAL::func_main_0) +set(RUNTIME_ARGUMENTS --boot-panda-files=${CMAKE_BINARY_DIR}/pandastdlib/arkstdlib.abc --boot-class-spaces=\"ecmascript\" --compiler-enable-jit=false --run-gc-in-place --runtime-type \"ecmascript\" ${SPREAD_PRIMITIVES_BIN} _GLOBAL::func_main_0) add_custom_command( OUTPUT ${SPREAD_PRIMITIVES_OUTPUT} -- Gitee