1# 2# Copyright (c) 2021-2022 Huawei Device Co., Ltd. 3# Licensed under the Apache License, Version 2.0 (the "License"); 4# you may not use this file except in compliance with the License. 5# You may obtain a copy of the License at 6# 7# http://www.apache.org/licenses/LICENSE-2.0 8# 9# Unless required by applicable law or agreed to in writing, software 10# distributed under the License is distributed on an "AS IS" BASIS, 11# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12# See the License for the specific language governing permissions and 13# limitations under the License. 14# 15 16group("unittest") { 17 if (os_level == "standard") { 18 testonly = true 19 deps = [ 20 "./unittest/huks_standard_test/crypto_engine_test:crypto_engine_unit_test", 21 "./unittest/huks_standard_test/interface_inner_test/alg_module_test:huks_mt_test", 22 "./unittest/huks_standard_test/interface_inner_test/sdk_test:hukssdk_test", 23 "./unittest/huks_standard_test/module_test:huks_module_test", 24 "./unittest/huks_standard_test/module_test/mock:huks_mock_test", 25 "./unittest/huks_standard_test/module_test/service_test/huks_service/os_dependency/idl/ipc:service_ipc_test", 26 "./unittest/huks_standard_test/module_test/service_test/huks_service/systemapi_wrap/useridm_test:huks_useridm_wrap_test", 27 "./unittest/huks_standard_test/storage_multithread_test:huks_multithread_test", 28 "./unittest/huks_standard_test/three_stage_test:huks_UT_test", 29 ] 30 } else { 31 if (ohos_kernel_type == "liteos_m") { 32 #deps = [ "./unittest/huks_lite_test/liteos_m_adapter:huks_3.0_test" ] 33 } else { 34 deps = [ "./unittest/huks_lite_test/liteos_a_adapter:huks_3.0_test" ] 35 } 36 } 37} 38 39group("reliability") { 40 testonly = true 41 if (os_level == "standard") { 42 deps = [ "./reliability:huks_stability_test" ] 43 } 44} 45