mirror of
https://gitee.com/openharmony/xts_hats
synced 2024-11-30 10:31:15 +00:00
add new case
Signed-off-by: lihao <lihao334@huawei.com>
This commit is contained in:
parent
36c29ddfa1
commit
1013c53d6d
30
BUILD.gn
Normal file
30
BUILD.gn
Normal file
@ -0,0 +1,30 @@
|
||||
# Copyright (C) 2021 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
|
||||
#
|
||||
# http://www.apache.org/licenses/LICENSE-2.0
|
||||
#
|
||||
# Unless required by applicable law or agreed to in writing, software
|
||||
# distributed under the License is distributed on an "AS IS" BASIS,
|
||||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
# See the License for the specific language governing permissions and
|
||||
# limitations under the License.
|
||||
|
||||
#import("//hit/build/suite.gni")
|
||||
import("test_packages.gni")
|
||||
ohos_test_suite("hats") {
|
||||
deps = selected_packages
|
||||
}
|
||||
|
||||
ohos_test_suite("hats_ivi") {
|
||||
deps = selected_packages_ivi
|
||||
}
|
||||
|
||||
ohos_test_suite("hats_intellitv") {
|
||||
deps = selected_packages_intellitv
|
||||
}
|
||||
|
||||
ohos_test_suite("hats_wearable") {
|
||||
deps = selected_packages_wearable
|
||||
}
|
84
test_packages.gni
Normal file
84
test_packages.gni
Normal file
@ -0,0 +1,84 @@
|
||||
# Copyright (C) 2021 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
|
||||
#
|
||||
# http://www.apache.org/licenses/LICENSE-2.0
|
||||
#
|
||||
# Unless required by applicable law or agreed to in writing, software
|
||||
# distributed under the License is distributed on an "AS IS" BASIS,
|
||||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
# See the License for the specific language governing permissions and
|
||||
# limitations under the License.
|
||||
|
||||
import("//test/xts/tools/build/suite.gni")
|
||||
|
||||
_all_test_packages = [
|
||||
"${HATS_ROOT}/hdf:hatshdftest",
|
||||
"${HATS_ROOT}/kernel:kernel",
|
||||
"${HATS_ROOT}/useriam:useriam",
|
||||
"${HATS_ROOT}/telephony:telephony",
|
||||
]
|
||||
|
||||
_all_test_packages_ivi = [
|
||||
# add hats for ivi here
|
||||
# "${HATS_ROOT}/multimedia:multimedia_ivi",
|
||||
]
|
||||
|
||||
_all_test_packages_intellitv = [
|
||||
# add hats for intellitv here
|
||||
#"${HATS_ROOT}/multimedia:multimedia_intellitv",
|
||||
]
|
||||
|
||||
_all_test_packages_wearable = [
|
||||
# add hats for wearable here
|
||||
#"${HATS_ROOT}/multimedia:multimedia_wearable",
|
||||
]
|
||||
|
||||
selected_packages_wearable = []
|
||||
selected_packages_intellitv = []
|
||||
selected_packages_ivi = []
|
||||
selected_packages = []
|
||||
assert(XTS_SUITENAME != "")
|
||||
if (build_xts == true && XTS_SUITENAME == "hats") {
|
||||
_select_script = "//test/xts/tools/build/test_package_select.py"
|
||||
_subsystem_config_path = rebase_path(
|
||||
"$root_build_dir/build_configs/subsystem_info/src_subsystem_info.json")
|
||||
_select_args = [ _subsystem_config_path ] + _all_test_packages
|
||||
_select_args_ivi = [ _subsystem_config_path ] + _all_test_packages_ivi
|
||||
_select_args_intellitv =
|
||||
[ _subsystem_config_path ] + _all_test_packages_intellitv
|
||||
_select_args_wearable =
|
||||
[ _subsystem_config_path ] + _all_test_packages_wearable
|
||||
_target_subsystem = getenv("target_subsystem")
|
||||
|
||||
if (_target_subsystem != "" && _target_subsystem != "all") {
|
||||
print("Build hats, target_subsystem=" + _target_subsystem)
|
||||
_select_args += [ "selected_subsystem=" + _target_subsystem ]
|
||||
_select_args_ivi += [ "selected_subsystem=" + _target_subsystem ]
|
||||
_select_args_intellitv += [ "selected_subsystem=" + _target_subsystem ]
|
||||
_select_args_wearable += [ "selected_subsystem=" + _target_subsystem ]
|
||||
}
|
||||
|
||||
selected_packages = exec_script(_select_script, _select_args, "list lines")
|
||||
|
||||
selected_packages_ivi =
|
||||
exec_script(_select_script, _select_args_ivi, "list lines")
|
||||
|
||||
selected_packages_intellitv =
|
||||
exec_script(_select_script, _select_args_intellitv, "list lines")
|
||||
|
||||
selected_packages_wearable =
|
||||
exec_script(_select_script, _select_args_wearable, "list lines")
|
||||
|
||||
print("Selected packages:")
|
||||
print(selected_packages)
|
||||
|
||||
# always include testtools
|
||||
selected_packages += [ "testtools:deploy_testtools" ]
|
||||
selected_packages_ivi += [ "testtools:deploy_testtools" ]
|
||||
selected_packages_intellitv += [ "testtools:deploy_testtools" ]
|
||||
selected_packages_wearable += [ "testtools:deploy_testtools" ]
|
||||
} else {
|
||||
print("HATS build is not enabled")
|
||||
}
|
Loading…
Reference in New Issue
Block a user