From 4552a15642a09f0c8dd594146a78032884edb9a3 Mon Sep 17 00:00:00 2001 From: Rokashevich Svetlana Date: Wed, 19 Feb 2025 15:11:49 +0300 Subject: [PATCH] Set default test group Issue: https://gitee.com/openharmony/arkcompiler_runtime_core/issues/IBNGHC Signed-off-by: Rokashevich Svetlana --- CMakeLists.txt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 95d78f49b..05f7e7a20 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,4 +1,4 @@ -# Copyright (c) 2021-2022 Huawei Device Co., Ltd. +# Copyright (c) 2021-2025 Huawei Device Co., Ltd. # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at @@ -22,6 +22,7 @@ panda_target_compile_definitions(arkcompiler PUBLIC -DENABLE_BYTECODE_OPT -DARK_ panda_target_compile_definitions(arkbytecodeopt PUBLIC -DENABLE_BYTECODE_OPT -DARK_INTRINSIC_SET) add_custom_target(ecmascript_tests COMMENT "Running ecmascript test suites") +set(DEFAULT_TEST_GROUP ecmascript_tests) if(TARGET es2panda_tests) add_dependencies(ecmascript_tests es2panda_tests) -- Gitee