diff --git a/tests/runtime/common/js_infinite_recursion/CMakeLists.txt b/tests/runtime/common/js_infinite_recursion/CMakeLists.txt index 832f76eb9ea85af2a67217d7748cc1d78c7331e1..e921b2544110356db5a069d1eab33d2f8ed7ce66 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 fec452855169aef1c9cb6f466fa499e085a56f3a..5528ad5302ed55f8cc6e75b8350c3e9e7f8305de 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 c99e4cc999364f3f40b51c57465d1f128b4dc9a7..23407cfa2fb43e5d495719dadb573ac881b74033 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 73b1441ccf47f26e338ce9fec76f22a5465509e7..a6708241902a458007bc7bb0d2f9ca970478d0a6 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}