mirror of
https://github.com/openharmony/kernel_linux_build.git
synced 2026-07-16 05:30:26 -04:00
4991d53e1a
Signed-off-by: Wang Jingjin <wangjingjin1@huawei.com> Change-Id: I23aa4c80f3dd61d85f1e2027ac97bcc40df84b15
67 lines
1.9 KiB
Plaintext
67 lines
1.9 KiB
Plaintext
# Copyright (C) 2022 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("//build/ohos.gni")
|
|
import("//build/ohos_var.gni")
|
|
if (is_standard_system) {
|
|
import("//build/test.gni")
|
|
}
|
|
|
|
if (is_standard_system) {
|
|
module_output_path = "linuxkerneltest/"
|
|
linuxkerneltest_public_deps = [
|
|
"//third_party/bounds_checking_function:libsec_shared",
|
|
"//third_party/googletest:gtest_main",
|
|
]
|
|
|
|
ohos_unittest("accesstokenid_test") {
|
|
module_out_path = module_output_path
|
|
sources = [ "unittest/accesstokenid/accesstokenid_test.cpp" ]
|
|
deps = linuxkerneltest_public_deps
|
|
part_name = "linux"
|
|
subsystem_name = "kernel"
|
|
}
|
|
|
|
ohos_unittest("rtg_test") {
|
|
module_out_path = module_output_path
|
|
sources = [ "unittest/rtg/rtg_test.cpp" ]
|
|
deps = linuxkerneltest_public_deps
|
|
part_name = "linux"
|
|
subsystem_name = "kernel"
|
|
}
|
|
|
|
script_dir = "kernel/linux/build/test/moduletest/runtest"
|
|
action("init_runtest") {
|
|
script = "init_runtest.sh"
|
|
outputs = [ "$root_build_dir/tests/kernel_shelltest/runtest.timestamp" ]
|
|
args = [
|
|
rebase_path("$root_build_dir/../../$script_dir"),
|
|
rebase_path("$root_build_dir/tests/kernel_shelltest"),
|
|
]
|
|
}
|
|
}
|
|
|
|
group("linuxkerneltest") {
|
|
testonly = true
|
|
if (is_standard_system) {
|
|
deps = [
|
|
":accesstokenid_test",
|
|
":init_runtest",
|
|
":rtg_test",
|
|
"fuzztest:fuzztest",
|
|
|
|
#"kernel_ltp:HatsKernelTest",
|
|
]
|
|
}
|
|
}
|