• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1# Copyright (c) 2021 Huawei Device Co., Ltd.
2# Licensed under the Apache License, Version 2.0 (the "License");
3# you may not use this file except in compliance with the License.
4# You may obtain a copy of the License at
5#
6#     http://www.apache.org/licenses/LICENSE-2.0
7#
8# Unless required by applicable law or agreed to in writing, software
9# distributed under the License is distributed on an "AS IS" BASIS,
10# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
11# See the License for the specific language governing permissions and
12# limitations under the License.
13
14import("//build/ohos.gni")
15import("//foundation/appexecfwk/standard/appexecfwk.gni")
16
17config("ams_system_test_config") {
18  defines = [
19    # "APP_LOG_TAG = \"AmsSystemTest\"",
20    # "LOG_DOMAIN = 0xD00111F",
21  ]
22
23  configs = [
24    # "${appexecfwk_path}/interfaces/innerkits/appexecfwk_core:bundlemgr_sdk_config",
25    # "${appexecfwk_path}/interfaces/innerkits/appexecfwk_base:appexecfwk_base_sdk_config",
26  ]
27}
28
29group("systemtest") {
30  testonly = true
31
32  deps = [
33    "ams_aa_command_test:systemtest",
34    "ams_ability_append_test:systemtest",
35    "ams_ability_visible_test:systemtest",
36    "ams_app_process_manage_test:systemtest",
37
38    #"ams_configuration_updated_test:ams_configuration_updated_test",
39    "ams_data_ability_test:systemtest",
40    "ams_dfx_test:systemtest",
41    "ams_kit_test:systemtest",
42    "ams_missionstack_test:ams_missionstack_test",
43    "ams_page_ability_test:systemtest",
44    "ams_power_test:systemtest",
45    "ams_service_ability_test:systemtest",
46    "tool:system_test_ability_util",
47  ]
48}
49