Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Kernel Liteos A
提交
4d07d2e9
K
Kernel Liteos A
项目概览
OpenHarmony
/
Kernel Liteos A
接近 2 年 前同步成功
通知
474
Star
414
Fork
55
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
4
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
K
Kernel Liteos A
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
4
Issue
4
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
4d07d2e9
编写于
6月 03, 2021
作者:
O
openharmony_ci
提交者:
Gitee
6月 03, 2021
浏览文件
操作
浏览文件
下载
差异文件
!274 优化内核用例架构
Merge pull request !274 from lnlan/notest_nobuild
上级
db384647
9bdf7164
变更
34
显示空白变更内容
内联
并排
Showing
34 changed file
with
2296 addition
and
2522 deletion
+2296
-2522
testsuites/unittest/BUILD.gn
testsuites/unittest/BUILD.gn
+163
-162
testsuites/unittest/IO/BUILD.gn
testsuites/unittest/IO/BUILD.gn
+56
-64
testsuites/unittest/IPC/BUILD.gn
testsuites/unittest/IPC/BUILD.gn
+19
-27
testsuites/unittest/config.gni
testsuites/unittest/config.gni
+11
-4
testsuites/unittest/drivers/hid/BUILD.gn
testsuites/unittest/drivers/hid/BUILD.gn
+18
-26
testsuites/unittest/drivers/storage/BUILD.gn
testsuites/unittest/drivers/storage/BUILD.gn
+18
-26
testsuites/unittest/dynload/BUILD.gn
testsuites/unittest/dynload/BUILD.gn
+19
-27
testsuites/unittest/exc/BUILD.gn
testsuites/unittest/exc/BUILD.gn
+23
-31
testsuites/unittest/fs/BUILD.gn
testsuites/unittest/fs/BUILD.gn
+765
-762
testsuites/unittest/fs/proc/BUILD.gn
testsuites/unittest/fs/proc/BUILD.gn
+23
-31
testsuites/unittest/fs/vfat2/BUILD.gn
testsuites/unittest/fs/vfat2/BUILD.gn
+166
-163
testsuites/unittest/liteipc/BUILD.gn
testsuites/unittest/liteipc/BUILD.gn
+19
-27
testsuites/unittest/mem/shm/BUILD.gn
testsuites/unittest/mem/shm/BUILD.gn
+31
-39
testsuites/unittest/mem/vm/BUILD.gn
testsuites/unittest/mem/vm/BUILD.gn
+32
-40
testsuites/unittest/misc/BUILD.gn
testsuites/unittest/misc/BUILD.gn
+31
-39
testsuites/unittest/net/netdb/BUILD.gn
testsuites/unittest/net/netdb/BUILD.gn
+46
-52
testsuites/unittest/net/resolv/BUILD.gn
testsuites/unittest/net/resolv/BUILD.gn
+26
-34
testsuites/unittest/net/socket/BUILD.gn
testsuites/unittest/net/socket/BUILD.gn
+31
-39
testsuites/unittest/posix/mem/BUILD.gn
testsuites/unittest/posix/mem/BUILD.gn
+20
-28
testsuites/unittest/posix/mqueue/BUILD.gn
testsuites/unittest/posix/mqueue/BUILD.gn
+168
-176
testsuites/unittest/posix/pthread/BUILD.gn
testsuites/unittest/posix/pthread/BUILD.gn
+131
-141
testsuites/unittest/process/mutex/BUILD.gn
testsuites/unittest/process/mutex/BUILD.gn
+43
-51
testsuites/unittest/process/process/BUILD.gn
testsuites/unittest/process/process/BUILD.gn
+92
-100
testsuites/unittest/process/pthread/BUILD.gn
testsuites/unittest/process/pthread/BUILD.gn
+42
-50
testsuites/unittest/process/rwlock/BUILD.gn
testsuites/unittest/process/rwlock/BUILD.gn
+20
-28
testsuites/unittest/process/spinlock/BUILD.gn
testsuites/unittest/process/spinlock/BUILD.gn
+19
-27
testsuites/unittest/security/capability/BUILD.gn
testsuites/unittest/security/capability/BUILD.gn
+19
-27
testsuites/unittest/security/reugid/BUILD.gn
testsuites/unittest/security/reugid/BUILD.gn
+19
-27
testsuites/unittest/security/vid/BUILD.gn
testsuites/unittest/security/vid/BUILD.gn
+19
-27
testsuites/unittest/signal/BUILD.gn
testsuites/unittest/signal/BUILD.gn
+81
-89
testsuites/unittest/sys/BUILD.gn
testsuites/unittest/sys/BUILD.gn
+46
-54
testsuites/unittest/time/clock/BUILD.gn
testsuites/unittest/time/clock/BUILD.gn
+29
-37
testsuites/unittest/time/timer/BUILD.gn
testsuites/unittest/time/timer/BUILD.gn
+24
-32
testsuites/unittest/util/BUILD.gn
testsuites/unittest/util/BUILD.gn
+27
-35
未找到文件。
testsuites/unittest/BUILD.gn
浏览文件 @
4d07d2e9
...
...
@@ -29,51 +29,38 @@
import("config.gni")
local_flags = []
local_flags_smoke = []
local_flags_full = []
if (LOSCFG_USER_TEST_SMP == "enable" || (LOSCFG_USER_TEST_SMP == "default" && board_name == "hispark_taurus")) {
local_flags = [ "-DLOSCFG_USER_TEST_SMP" ]
}
local_flags_smoke += [ "-DLOSCFG_USER_TEST_SMOKE" ]
local_flags_full += [ "-DLOSCFG_USER_TEST_SMOKE" ]
local_flags_full += [ "-DLOSCFG_USER_TEST_FULL" ]
#local_flags_full += [ "-DLOSCFG_USER_TEST_PRESSURE" ]
config("local_public_config") {
cflags = [ "-fpermissive" ]
cflags += [
local_flags = [
"-fpermissive",
"-O2",
"-fbuiltin",
"-Wno-narrowing",
"-fPIE",
]
if (LOSCFG_USER_TEST_SMP == "enable" || (LOSCFG_USER_TEST_SMP == "default" && board_name == "hispark_taurus")) {
local_flags += [ "-DLOSCFG_USER_TEST_SMP" ]
}
config("public_config_for_door") {
cflags = [
"-DLOSCFG_USER_TEST_SMOKE",
]
cflags += local_flags
cflags_cc = cflags
}
config("public_config_smk") {
cflags = [ "-fpermissive" ]
cflags += [
"-O2",
"-fbuiltin",
"-Wno-narrowing",
"-fPIE",
config("public_config_for_all") {
cflags = [
"-DLOSCFG_USER_TEST_SMOKE",
"-DLOSCFG_USER_TEST_FULL",
]
cflags += local_flags_smoke
cflags += local_flags
cflags_cc = cflags
}
config("public_config_full") {
cflags = [ "-fpermissive" ]
cflags += [
"-O2",
"-fbuiltin",
"-Wno-narrowing",
"-fPIE",
config("public_config_for_pressure") {
cflags = [
"-DLOSCFG_USER_TEST_PRESSURE",
]
cflags += local_flags_full
cflags += local_flags
cflags_cc = cflags
}
...
...
@@ -81,253 +68,267 @@ config("public_config_full") {
group("unittest") {
deps = []
if (ohos_build_type == "debug") {
if (LOSCFG_USER_TEST_
MISC
== true) {
if (LOSCFG_USER_TEST_
FOR_ALL == true
) {
deps += [ "
misc:liteos_a_misc_unittest
" ]
if (LOSCFG_USER_TEST_
FS_JFFS
== true) {
if (LOSCFG_USER_TEST_
LEVEL >= TEST_LEVEL_LOW
) {
deps += [ "
fs:liteos_a_fs_unittest_door
" ]
}
if (LOSCFG_USER_TEST_
FOR_DOOR == true
) {
deps += [ "
misc:liteos_a_misc_unittest_door
" ]
if (LOSCFG_USER_TEST_
LEVEL >= TEST_LEVEL_MIDDLE
) {
deps += [ "
fs:liteos_a_fs_unittest
" ]
}
if (LOSCFG_USER_TEST_LEVEL >= TEST_LEVEL_HIGH) {
deps += [ "fs:liteos_a_fs_unittest_pressure" ]
}
if (LOSCFG_USER_TEST_DRIVERS_HID == true) {
if (LOSCFG_USER_TEST_FOR_ALL == true) {
deps += [ "drivers/hid:liteos_a_drivers_hid_unittest" ]
}
if (LOSCFG_USER_TEST_FOR_DOOR == true) {
deps += [ "drivers/hid:liteos_a_drivers_hid_unittest_door" ]
if (LOSCFG_USER_TEST_FS_VFAT == true) {
if (LOSCFG_USER_TEST_LEVEL >= TEST_LEVEL_LOW) {
deps += [ "fs/vfat2:liteos_a_fs_vfat_unittest_door" ]
}
if (LOSCFG_USER_TEST_LEVEL >= TEST_LEVEL_MIDDLE) {
deps += [ "fs/vfat2:liteos_a_fs_vfat_unittest" ]
}
if (LOSCFG_USER_TEST_DRIVERS_STORAGE == true) {
if (LOSCFG_USER_TEST_FOR_ALL == true) {
deps += [ "drivers/storage:liteos_a_drivers_storage_unittest" ]
if (LOSCFG_USER_TEST_LEVEL >= TEST_LEVEL_HIGH) {
deps += [ "fs/vfat2:liteos_a_fs_vfat_unittest_pressure" ]
}
if (LOSCFG_USER_TEST_FOR_DOOR == true) {
deps += [ "drivers/storage:liteos_a_drivers_storage_unittest_door" ]
}
if (LOSCFG_USER_TEST_FS_PROC == true) {
if (LOSCFG_USER_TEST_LEVEL >= TEST_LEVEL_LOW) {
deps += [ "fs/proc:liteos_a_fs_procfs_unittest_door" ]
}
if (LOSCFG_USER_TEST_DYNLOAD == true) {
if (LOSCFG_USER_TEST_FOR_ALL == true) {
deps += [ "dynload:liteos_a_dynload_unittest" ]
if (LOSCFG_USER_TEST_LEVEL >= TEST_LEVEL_MIDDLE) {
deps += [ "fs/proc:liteos_a_fs_procfs_unittest" ]
}
if (LOSCFG_USER_TEST_FOR_DOOR == true) {
deps += [ "dynload:liteos_a_dynload_unittest_door" ]
}
if (LOSCFG_USER_TEST_MISC == true) {
if (LOSCFG_USER_TEST_LEVEL >= TEST_LEVEL_LOW) {
deps += [ "misc:liteos_a_misc_unittest_door" ]
}
if (LOSCFG_USER_TEST_EXC == true) {
if (LOSCFG_USER_TEST_FOR_ALL == true) {
deps += [ "exc:liteos_a_exc_unittest" ]
if (LOSCFG_USER_TEST_LEVEL >= TEST_LEVEL_MIDDLE) {
deps += [ "misc:liteos_a_misc_unittest" ]
}
if (LOSCFG_USER_TEST_FOR_DOOR == true) {
deps += [ "exc:liteos_a_exc_unittest_door" ]
}
if (LOSCFG_USER_TEST_DRIVERS_HID == true) {
if (LOSCFG_USER_TEST_LEVEL >= TEST_LEVEL_LOW) {
deps += [ "drivers/hid:liteos_a_drivers_hid_unittest_door" ]
}
if (LOSCFG_USER_TEST_FS_JFFS == true) {
if (LOSCFG_USER_TEST_FOR_ALL == true) {
deps += [ "fs:liteos_a_fs_unittest" ]
if (LOSCFG_USER_TEST_LEVEL >= TEST_LEVEL_MIDDLE) {
deps += [ "drivers/hid:liteos_a_drivers_hid_unittest" ]
}
if (LOSCFG_USER_TEST_FOR_DOOR == true) {
deps += [ "fs:liteos_a_fs_unittest_door" ]
}
if (LOSCFG_USER_TEST_DRIVERS_STORAGE == true) {
if (LOSCFG_USER_TEST_LEVEL >= TEST_LEVEL_LOW) {
deps += [ "drivers/storage:liteos_a_drivers_storage_unittest_door" ]
}
if (LOSCFG_USER_TEST_FS_VFAT == true) {
if (LOSCFG_USER_TEST_FOR_ALL == true) {
deps += [ "fs/vfat2:liteos_a_fs_vfat_unittest" ]
if (LOSCFG_USER_TEST_LEVEL >= TEST_LEVEL_MIDDLE) {
deps += [ "drivers/storage:liteos_a_drivers_storage_unittest" ]
}
if (LOSCFG_USER_TEST_FOR_DOOR == true) {
deps += [ "fs/vfat2:liteos_a_fs_vfat_unittest_door" ]
}
if (LOSCFG_USER_TEST_DYNLOAD == true) {
if (LOSCFG_USER_TEST_LEVEL >= TEST_LEVEL_LOW) {
deps += [ "dynload:liteos_a_dynload_unittest_door" ]
}
if (LOSCFG_USER_TEST_IO == true) {
if (LOSCFG_USER_TEST_FOR_ALL == true) {
deps += [ "IO:liteos_a_io_unittest" ]
if (LOSCFG_USER_TEST_LEVEL >= TEST_LEVEL_MIDDLE) {
deps += [ "dynload:liteos_a_dynload_unittest" ]
}
if (LOSCFG_USER_TEST_FOR_DOOR == true) {
}
if (LOSCFG_USER_TEST_EXC == true) {
if (LOSCFG_USER_TEST_LEVEL >= TEST_LEVEL_LOW) {
deps += [ "exc:liteos_a_exc_unittest_door" ]
}
if (LOSCFG_USER_TEST_LEVEL >= TEST_LEVEL_MIDDLE) {
deps += [ "exc:liteos_a_exc_unittest" ]
}
}
if (LOSCFG_USER_TEST_IO == true) {
if (LOSCFG_USER_TEST_LEVEL >= TEST_LEVEL_LOW) {
deps += [ "IO:liteos_a_io_unittest_door" ]
}
if (LOSCFG_USER_TEST_LEVEL >= TEST_LEVEL_MIDDLE) {
deps += [ "IO:liteos_a_io_unittest" ]
}
if (LOSCFG_USER_TEST_IPC == true) {
if (LOSCFG_USER_TEST_FOR_ALL == true) {
deps += [ "IPC:liteos_a_ipc_unittest" ]
}
if (LOSCFG_USER_TEST_FOR_DOOR == true) {
if (LOSCFG_USER_TEST_IPC == true) {
if (LOSCFG_USER_TEST_LEVEL >= TEST_LEVEL_LOW) {
deps += [ "IPC:liteos_a_ipc_unittest_door" ]
}
if (LOSCFG_USER_TEST_LEVEL >= TEST_LEVEL_MIDDLE) {
deps += [ "IPC:liteos_a_ipc_unittest" ]
}
if (LOSCFG_USER_TEST_LITEIPC == true) {
if (LOSCFG_USER_TEST_FOR_ALL == true) {
deps += [ "liteipc:liteos_a_liteipc_unittest" ]
}
if (LOSCFG_USER_TEST_FOR_DOOR == true) {
if (LOSCFG_USER_TEST_LITEIPC == true) {
if (LOSCFG_USER_TEST_LEVEL >= TEST_LEVEL_LOW) {
deps += [ "liteipc:liteos_a_liteipc_unittest_door" ]
}
if (LOSCFG_USER_TEST_LEVEL >= TEST_LEVEL_MIDDLE) {
deps += [ "liteipc:liteos_a_liteipc_unittest" ]
}
if (LOSCFG_USER_TEST_MEM_SHM == true) {
if (LOSCFG_USER_TEST_FOR_ALL == true) {
deps += [ "mem/shm:liteos_a_mem_shm_unittest" ]
}
if (LOSCFG_USER_TEST_FOR_DOOR == true) {
if (LOSCFG_USER_TEST_MEM_SHM == true) {
if (LOSCFG_USER_TEST_LEVEL >= TEST_LEVEL_LOW) {
deps += [ "mem/shm:liteos_a_mem_shm_unittest_door" ]
}
if (LOSCFG_USER_TEST_LEVEL >= TEST_LEVEL_MIDDLE) {
deps += [ "mem/shm:liteos_a_mem_shm_unittest" ]
}
if (LOSCFG_USER_TEST_MEM_VM == true) {
if (LOSCFG_USER_TEST_FOR_ALL == true) {
deps += [ "mem/vm:liteos_a_mem_vm_unittest" ]
}
if (LOSCFG_USER_TEST_FOR_DOOR == true) {
if (LOSCFG_USER_TEST_MEM_VM == true) {
if (LOSCFG_USER_TEST_LEVEL >= TEST_LEVEL_LOW) {
deps += [ "mem/vm:liteos_a_mem_vm_unittest_door" ]
}
if (LOSCFG_USER_TEST_LEVEL >= TEST_LEVEL_MIDDLE) {
deps += [ "mem/vm:liteos_a_mem_vm_unittest" ]
}
if (LOSCFG_USER_TEST_NET_NETDB == true) {
if (LOSCFG_USER_TEST_FOR_ALL == true) {
deps += [ "net/netdb:liteos_a_net_netdb_unittest" ]
}
if (LOSCFG_USER_TEST_FOR_DOOR == true) {
if (LOSCFG_USER_TEST_NET_NETDB == true) {
if (LOSCFG_USER_TEST_LEVEL >= TEST_LEVEL_LOW) {
deps += [ "net/netdb:liteos_a_net_netdb_unittest_door" ]
}
if (LOSCFG_USER_TEST_LEVEL >= TEST_LEVEL_MIDDLE) {
deps += [ "net/netdb:liteos_a_net_netdb_unittest" ]
}
}
if (LOSCFG_USER_TEST_NET_RESOLV == true) {
if (LOSCFG_USER_TEST_FOR_ALL == true) {
deps += [ "net/resolv:liteos_a_net_resolv_unittest" ]
}
if (LOSCFG_USER_TEST_FOR_DOOR == true) {
if (LOSCFG_USER_TEST_LEVEL >= TEST_LEVEL_LOW) {
deps += [ "net/resolv:liteos_a_net_resolv_unittest_door" ]
}
if (LOSCFG_USER_TEST_LEVEL >= TEST_LEVEL_MIDDLE) {
deps += [ "net/resolv:liteos_a_net_resolv_unittest" ]
}
if (LOSCFG_USER_TEST_NET_SOCKET == true) {
if (LOSCFG_USER_TEST_FOR_ALL == true) {
deps += [ "net/socket:liteos_a_net_socket_unittest" ]
}
if (LOSCFG_USER_TEST_FOR_DOOR == true) {
if (LOSCFG_USER_TEST_NET_SOCKET == true) {
if (LOSCFG_USER_TEST_LEVEL >= TEST_LEVEL_LOW) {
deps += [ "net/socket:liteos_a_net_socket_unittest_door" ]
}
if (LOSCFG_USER_TEST_LEVEL >= TEST_LEVEL_MIDDLE) {
deps += [ "net/socket:liteos_a_net_socket_unittest" ]
}
if (LOSCFG_USER_TEST_POSIX_MEM == true) {
if (LOSCFG_USER_TEST_FOR_ALL == true) {
deps += [ "posix/mem:liteos_a_posix_mem_unittest" ]
}
if (LOSCFG_USER_TEST_FOR_DOOR == true) {
if (LOSCFG_USER_TEST_POSIX_MEM == true) {
if (LOSCFG_USER_TEST_LEVEL >= TEST_LEVEL_LOW) {
deps += [ "posix/mem:liteos_a_posix_mem_unittest_door" ]
}
if (LOSCFG_USER_TEST_LEVEL >= TEST_LEVEL_MIDDLE) {
deps += [ "posix/mem:liteos_a_posix_mem_unittest" ]
}
if (LOSCFG_USER_TEST_POSIX_MQUEUE == true) {
if (LOSCFG_USER_TEST_FOR_ALL == true) {
deps += [ "posix/mqueue:liteos_a_posix_mqueue_unittest" ]
}
if (LOSCFG_USER_TEST_FOR_DOOR == true) {
if (LOSCFG_USER_TEST_POSIX_MQUEUE == true) {
if (LOSCFG_USER_TEST_LEVEL >= TEST_LEVEL_LOW) {
deps += [ "posix/mqueue:liteos_a_posix_mqueue_unittest_door" ]
}
if (LOSCFG_USER_TEST_LEVEL >= TEST_LEVEL_MIDDLE) {
deps += [ "posix/mqueue:liteos_a_posix_mqueue_unittest" ]
}
if (LOSCFG_USER_TEST_POSIX_PTHREAD == true) {
if (LOSCFG_USER_TEST_FOR_ALL == true) {
deps += [ "posix/pthread:liteos_a_posix_pthread_unittest" ]
}
if (LOSCFG_USER_TEST_FOR_DOOR == true) {
if (LOSCFG_USER_TEST_POSIX_PTHREAD == true) {
if (LOSCFG_USER_TEST_LEVEL >= TEST_LEVEL_LOW) {
deps += [ "posix/pthread:liteos_a_posix_pthread_unittest_door" ]
}
if (LOSCFG_USER_TEST_LEVEL >= TEST_LEVEL_MIDDLE) {
deps += [ "posix/pthread:liteos_a_posix_pthread_unittest" ]
}
}
if (LOSCFG_USER_TEST_MUTEX == true) {
if (LOSCFG_USER_TEST_FOR_ALL == true) {
deps += [ "process/mutex:liteos_a_mutex_unittest" ]
}
if (LOSCFG_USER_TEST_FOR_DOOR == true) {
if (LOSCFG_USER_TEST_LEVEL >= TEST_LEVEL_LOW) {
deps += [ "process/mutex:liteos_a_mutex_unittest_door" ]
}
if (LOSCFG_USER_TEST_LEVEL >= TEST_LEVEL_MIDDLE) {
deps += [ "process/mutex:liteos_a_mutex_unittest" ]
}
if (LOSCFG_USER_TEST_PROCESS == true) {
if (LOSCFG_USER_TEST_FOR_ALL == true) {
deps += [ "process/process:liteos_a_process_unittest" ]
}
if (LOSCFG_USER_TEST_FOR_DOOR == true) {
if (LOSCFG_USER_TEST_PROCESS == true) {
if (LOSCFG_USER_TEST_LEVEL >= TEST_LEVEL_LOW) {
deps += [ "process/process:liteos_a_process_unittest_door" ]
}
if (LOSCFG_USER_TEST_LEVEL >= TEST_LEVEL_MIDDLE) {
deps += [ "process/process:liteos_a_process_unittest" ]
}
if (LOSCFG_USER_TEST_PTHREAD == true) {
if (LOSCFG_USER_TEST_FOR_ALL == true) {
deps += [ "process/pthread:liteos_a_pthread_unittest" ]
}
if (LOSCFG_USER_TEST_FOR_DOOR == true) {
if (LOSCFG_USER_TEST_PTHREAD == true) {
if (LOSCFG_USER_TEST_LEVEL >= TEST_LEVEL_LOW) {
deps += [ "process/pthread:liteos_a_pthread_unittest_door" ]
}
if (LOSCFG_USER_TEST_LEVEL >= TEST_LEVEL_MIDDLE) {
deps += [ "process/pthread:liteos_a_pthread_unittest" ]
}
if (LOSCFG_USER_TEST_RWLOCK == true) {
if (LOSCFG_USER_TEST_FOR_ALL == true) {
deps += [ "process/rwlock:liteos_a_rwlock_unittest" ]
}
if (LOSCFG_USER_TEST_FOR_DOOR == true) {
if (LOSCFG_USER_TEST_RWLOCK == true) {
if (LOSCFG_USER_TEST_LEVEL >= TEST_LEVEL_LOW) {
deps += [ "process/rwlock:liteos_a_rwlock_unittest_door" ]
}
if (LOSCFG_USER_TEST_LEVEL >= TEST_LEVEL_MIDDLE) {
deps += [ "process/rwlock:liteos_a_rwlock_unittest" ]
}
if (LOSCFG_USER_TEST_SPINLOCK == true) {
if (LOSCFG_USER_TEST_FOR_ALL == true) {
deps += [ "process/spinlock:liteos_a_spinlock_unittest" ]
}
if (LOSCFG_USER_TEST_FOR_DOOR == true) {
if (LOSCFG_USER_TEST_SPINLOCK == true) {
if (LOSCFG_USER_TEST_LEVEL >= TEST_LEVEL_LOW) {
deps += [ "process/spinlock:liteos_a_spinlock_unittest_door" ]
}
if (LOSCFG_USER_TEST_LEVEL >= TEST_LEVEL_MIDDLE) {
deps += [ "process/spinlock:liteos_a_spinlock_unittest" ]
}
if (LOSCFG_USER_TEST_SECURITY_REUGID == true) {
if (LOSCFG_USER_TEST_FOR_ALL == true) {
deps += [ "security/reugid:liteos_a_security_reugid_unittest" ]
}
if (LOSCFG_USER_TEST_FOR_DOOR == true) {
if (LOSCFG_USER_TEST_SECURITY_REUGID == true) {
if (LOSCFG_USER_TEST_LEVEL >= TEST_LEVEL_LOW) {
deps += [ "security/reugid:liteos_a_security_reugid_unittest_door" ]
}
if (LOSCFG_USER_TEST_LEVEL >= TEST_LEVEL_MIDDLE) {
deps += [ "security/reugid:liteos_a_security_reugid_unittest" ]
}
}
if (LOSCFG_USER_TEST_SECURITY_CAPABILITY == true) {
if (LOSCFG_USER_TEST_FOR_ALL == true) {
deps += [ "security/capability:liteos_a_security_capability_unittest" ]
}
if (LOSCFG_USER_TEST_FOR_DOOR == true) {
if (LOSCFG_USER_TEST_LEVEL >= TEST_LEVEL_LOW) {
deps += [ "security/capability:liteos_a_security_capability_unittest_door" ]
}
if (LOSCFG_USER_TEST_LEVEL >= TEST_LEVEL_MIDDLE) {
deps += [ "security/capability:liteos_a_security_capability_unittest" ]
}
if (LOSCFG_USER_TEST_SECURITY_VID == true) {
if (LOSCFG_USER_TEST_FOR_ALL == true) {
deps += [ "security/vid:liteos_a_security_vid_unittest" ]
}
if (LOSCFG_USER_TEST_FOR_DOOR == true) {
if (LOSCFG_USER_TEST_SECURITY_VID == true) {
if (LOSCFG_USER_TEST_LEVEL >= TEST_LEVEL_LOW) {
deps += [ "security/vid:liteos_a_security_vid_unittest_door" ]
}
if (LOSCFG_USER_TEST_LEVEL >= TEST_LEVEL_MIDDLE) {
deps += [ "security/vid:liteos_a_security_vid_unittest" ]
}
if (LOSCFG_USER_TEST_UTIL == true) {
if (LOSCFG_USER_TEST_FOR_ALL == true) {
deps += [ "util:liteos_a_util_unittest" ]
}
if (LOSCFG_USER_TEST_FOR_DOOR == true) {
if (LOSCFG_USER_TEST_UTIL == true) {
if (LOSCFG_USER_TEST_LEVEL >= TEST_LEVEL_LOW) {
deps += [ "util:liteos_a_util_unittest_door" ]
}
if (LOSCFG_USER_TEST_LEVEL >= TEST_LEVEL_MIDDLE) {
deps += [ "util:liteos_a_util_unittest" ]
}
if (LOSCFG_USER_TEST_TIME_TIMER == true) {
if (LOSCFG_USER_TEST_FOR_ALL == true) {
deps += [ "time/timer:liteos_a_time_timer_unittest" ]
}
if (LOSCFG_USER_TEST_FOR_DOOR == true) {
if (LOSCFG_USER_TEST_TIME_TIMER == true) {
if (LOSCFG_USER_TEST_LEVEL >= TEST_LEVEL_LOW) {
deps += [ "time/timer:liteos_a_time_timer_unittest_door" ]
}
if (LOSCFG_USER_TEST_LEVEL >= TEST_LEVEL_MIDDLE) {
deps += [ "time/timer:liteos_a_time_timer_unittest" ]
}
if (LOSCFG_USER_TEST_TIME_CLOCK == true) {
if (LOSCFG_USER_TEST_FOR_ALL == true) {
deps += [ "time/clock:liteos_a_time_clock_unittest" ]
}
if (LOSCFG_USER_TEST_FOR_DOOR == true) {
if (LOSCFG_USER_TEST_TIME_CLOCK == true) {
if (LOSCFG_USER_TEST_LEVEL >= TEST_LEVEL_LOW) {
deps += [ "time/clock:liteos_a_time_clock_unittest_door" ]
}
if (LOSCFG_USER_TEST_LEVEL >= TEST_LEVEL_MIDDLE) {
deps += [ "time/clock:liteos_a_time_clock_unittest" ]
}
if (LOSCFG_USER_TEST_SYS == true) {
if (LOSCFG_USER_TEST_FOR_ALL == true) {
deps += [ "sys:liteos_a_sys_unittest" ]
}
if (LOSCFG_USER_TEST_FOR_DOOR == true) {
if (LOSCFG_USER_TEST_SYS == true) {
if (LOSCFG_USER_TEST_LEVEL >= TEST_LEVEL_LOW) {
deps += [ "sys:liteos_a_sys_unittest_door" ]
}
if (LOSCFG_USER_TEST_LEVEL >= TEST_LEVEL_MIDDLE) {
deps += [ "sys:liteos_a_sys_unittest" ]
}
if (LOSCFG_USER_TEST_SIGNAL == true) {
if (LOSCFG_USER_TEST_FOR_ALL == true) {
deps += [ "signal:liteos_a_signal_unittest" ]
}
if (LOSCFG_USER_TEST_FOR_DOOR == true) {
if (LOSCFG_USER_TEST_SIGNAL == true) {
if (LOSCFG_USER_TEST_LEVEL >= TEST_LEVEL_LOW) {
deps += [ "signal:liteos_a_signal_unittest_door" ]
}
if (LOSCFG_USER_TEST_LEVEL >= TEST_LEVEL_MIDDLE) {
deps += [ "signal:liteos_a_signal_unittest" ]
}
}
}
}
testsuites/unittest/IO/BUILD.gn
浏览文件 @
4d07d2e9
...
...
@@ -41,20 +41,14 @@ sources_entry = [
"io_test.cpp",
]
source_set("sources_smoke") {
sources = [
sources_smoke = [
"smoke/IO_test_005.cpp",
"smoke/IO_test_008.cpp",
"smoke/IO_test_010.cpp",
"smoke/IO_test_013.cpp",
]
configs += [ "..:local_public_config" ]
include_dirs = common_include_dirs
deps = [ "//third_party/bounds_checking_function:libsec_shared" ]
}
]
source_set("sources_other") {
sources = [
sources_full = [
"full/IO_test_confstr_001.cpp",
"full/IO_test_dcgettext_001.cpp",
"full/IO_test_dcgettext_002.cpp",
...
...
@@ -89,33 +83,31 @@ source_set("sources_other") {
"full/IO_test_gettext_001.cpp",
"full/IO_test_strncasecmp_l_001.cpp",
"full/IO_test_strncasecmp_l_002.cpp",
]
configs += [ "..:local_public_config" ]
include_dirs = common_include_dirs
deps = [ "//third_party/bounds_checking_function:libsec_shared" ]
}
]
if (LOSCFG_USER_TEST_
FOR_ALL == true
) {
unittest("liteos_a_io_unittest") {
if (LOSCFG_USER_TEST_
LEVEL >= TEST_LEVEL_LOW
) {
unittest("liteos_a_io_unittest
_door
") {
output_extension = "bin"
output_dir = "$root_out_dir/test/unittest/kernel"
include_dirs = common_include_dirs
sources = sources_entry
configs = [ "..:public_config_full" ]
deps = []
deps += [ ":sources_smoke" ]
deps += [ ":sources_other" ]
sources += sources_smoke
sources_full = []
sources += sources_full
configs = [ "..:public_config_for_door" ]
deps = [ "//third_party/bounds_checking_function:libsec_shared" ]
}
}
if (LOSCFG_USER_TEST_
FOR_DOOR == true
) {
unittest("liteos_a_io_unittest
_door
") {
if (LOSCFG_USER_TEST_
LEVEL >= TEST_LEVEL_MIDDLE
) {
unittest("liteos_a_io_unittest") {
output_extension = "bin"
output_dir = "$root_out_dir/test/unittest/kernel"
include_dirs = common_include_dirs
sources = sources_entry
configs = [ "..:public_config_smk" ]
deps = []
deps += [ ":sources_smoke" ]
sources += sources_smoke
sources += sources_full
configs = [ "..:public_config_for_all" ]
deps = [ "//third_party/bounds_checking_function:libsec_shared" ]
}
}
testsuites/unittest/IPC/BUILD.gn
浏览文件 @
4d07d2e9
...
...
@@ -41,45 +41,37 @@ sources_entry = [
"ipc_test.cpp",
]
source_set("sources_smoke") {
sources = [
]
configs += [ "..:local_public_config" ]
include_dirs = common_include_dirs
deps = [ "//third_party/bounds_checking_function:libsec_shared" ]
}
sources_smoke = [
]
source_set("sources_other") {
sources = [
sources_full = [
"full/IPC_test_mkfifoat_001.cpp",
"full/IPC_test_mkfifoat_002.cpp",
]
configs += [ "..:local_public_config" ]
include_dirs = common_include_dirs
deps = [ "//third_party/bounds_checking_function:libsec_shared" ]
}
]
if (LOSCFG_USER_TEST_
FOR_ALL == true
) {
unittest("liteos_a_ipc_unittest") {
if (LOSCFG_USER_TEST_
LEVEL >= TEST_LEVEL_LOW
) {
unittest("liteos_a_ipc_unittest
_door
") {
output_extension = "bin"
output_dir = "$root_out_dir/test/unittest/kernel"
include_dirs = common_include_dirs
sources = sources_entry
configs = [ "..:public_config_full" ]
deps = []
deps += [ ":sources_smoke" ]
deps += [ ":sources_other" ]
sources += sources_smoke
sources_full = []
sources += sources_full
configs = [ "..:public_config_for_door" ]
deps = [ "//third_party/bounds_checking_function:libsec_shared" ]
}
}
if (LOSCFG_USER_TEST_
FOR_DOOR == true
) {
unittest("liteos_a_ipc_unittest
_door
") {
if (LOSCFG_USER_TEST_
LEVEL >= TEST_LEVEL_MIDDLE
) {
unittest("liteos_a_ipc_unittest") {
output_extension = "bin"
output_dir = "$root_out_dir/test/unittest/kernel"
include_dirs = common_include_dirs
sources = sources_entry
configs = [ "..:public_config_smk" ]
deps = []
deps += [ ":sources_smoke" ]
sources += sources_smoke
sources += sources_full
configs = [ "..:public_config_for_all" ]
deps = [ "//third_party/bounds_checking_function:libsec_shared" ]
}
}
testsuites/unittest/config.gni
浏览文件 @
4d07d2e9
...
...
@@ -27,13 +27,19 @@
# OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
LOSCFG_USER_TEST_FOR_DOOR = true
LOSCFG_USER_TEST_FOR_ALL = false
LOSCFG_USER_TEST_PRESSURE = false
TEST_LEVEL_LOW = 1
TEST_LEVEL_MIDDLE = 3
TEST_LEVEL_HIGH = 5
# 0: don`t generate
# TEST_LEVEL_LOW: only generate xxx_unittest_door.bin (smoke)
# TEST_LEVEL_MIDDLE: generate xxx_unittest_door.bin (smoke) & xxx_unittest.bin (smoke + full)
# TEST_LEVEL_HIGH: generate xxx_unittest_door.bin (smoke) & xxx_unittest.bin (smoke + full) & xxx_unittest_pressure.bin (pressure)
LOSCFG_USER_TEST_LEVEL = TEST_LEVEL_HIGH
# "default": depend on board_name
# "enable": those testsuites testing for SMP is enable
# "disable" those testsuites is disable
# "disable"
:
those testsuites is disable
LOSCFG_USER_TEST_SMP = "default"
LOSCFG_USER_TEST_MISC = true
...
...
@@ -42,6 +48,7 @@ LOSCFG_USER_TEST_DRIVERS_STORAGE = true
LOSCFG_USER_TEST_DYNLOAD = true
LOSCFG_USER_TEST_EXC = true
LOSCFG_USER_TEST_FS_JFFS = false
LOSCFG_USER_TEST_FS_PROC = false
LOSCFG_USER_TEST_FS_VFAT = false
LOSCFG_USER_TEST_IO = true
LOSCFG_USER_TEST_IPC = false
...
...
testsuites/unittest/drivers/hid/BUILD.gn
浏览文件 @
4d07d2e9
...
...
@@ -41,44 +41,36 @@ sources_entry = [
"drivers_hid_test.cpp",
]
source_set("sources_smoke") {
sources = [
sources_smoke = [
"smoke/hid_test_001.cpp",
]
configs += [ "../..:local_public_config" ]
include_dirs = common_include_dirs
deps = [ "//third_party/bounds_checking_function:libsec_shared" ]
}
]
source_set("sources_other") {
sources = [
]
configs += [ "../..:local_public_config" ]
include_dirs = common_include_dirs
deps = [ "//third_party/bounds_checking_function:libsec_shared" ]
}
sources_full = [
]
if (LOSCFG_USER_TEST_
FOR_ALL == true
) {
unittest("liteos_a_drivers_hid_unittest") {
if (LOSCFG_USER_TEST_
LEVEL >= TEST_LEVEL_LOW
) {
unittest("liteos_a_drivers_hid_unittest
_door
") {
output_extension = "bin"
output_dir = "$root_out_dir/test/unittest/kernel"
include_dirs = common_include_dirs
sources = sources_entry
configs = [ "../..:public_config_full" ]
deps = []
deps += [ ":sources_smoke" ]
deps += [ ":sources_other" ]
sources += sources_smoke
sources_full = []
sources += sources_full
configs = [ "../..:public_config_for_door" ]
deps = [ "//third_party/bounds_checking_function:libsec_shared" ]
}
}
if (LOSCFG_USER_TEST_
FOR_DOOR == true
) {
unittest("liteos_a_drivers_hid_unittest
_door
") {
if (LOSCFG_USER_TEST_
LEVEL >= TEST_LEVEL_MIDDLE
) {
unittest("liteos_a_drivers_hid_unittest") {
output_extension = "bin"
output_dir = "$root_out_dir/test/unittest/kernel"
include_dirs = common_include_dirs
sources = sources_entry
configs = [ "../..:public_config_smk" ]
deps = []
deps += [ ":sources_smoke" ]
sources += sources_smoke
sources += sources_full
configs = [ "../..:public_config_for_all" ]
deps = [ "//third_party/bounds_checking_function:libsec_shared" ]
}
}
\ No newline at end of file
testsuites/unittest/drivers/storage/BUILD.gn
浏览文件 @
4d07d2e9
...
...
@@ -41,44 +41,36 @@ sources_entry = [
"drivers_storage_test.cpp",
]
source_set("sources_smoke") {
sources = [
sources_smoke = [
"smoke/storage_test_001.cpp",
]
configs += [ "../..:local_public_config" ]
include_dirs = common_include_dirs
deps = [ "//third_party/bounds_checking_function:libsec_shared" ]
}
]
source_set("sources_other") {
sources = [
]
configs += [ "../..:local_public_config" ]
include_dirs = common_include_dirs
deps = [ "//third_party/bounds_checking_function:libsec_shared" ]
}
sources_full = [
]
if (LOSCFG_USER_TEST_
FOR_ALL == true
) {
unittest("liteos_a_drivers_storage_unittest") {
if (LOSCFG_USER_TEST_
LEVEL >= TEST_LEVEL_LOW
) {
unittest("liteos_a_drivers_storage_unittest
_door
") {
output_extension = "bin"
output_dir = "$root_out_dir/test/unittest/kernel"
include_dirs = common_include_dirs
sources = sources_entry
configs = [ "../..:public_config_full" ]
deps = []
deps += [ ":sources_smoke" ]
deps += [ ":sources_other" ]
sources += sources_smoke
sources_full = []
sources += sources_full
configs = [ "../..:public_config_for_door" ]
deps = [ "//third_party/bounds_checking_function:libsec_shared" ]
}
}
if (LOSCFG_USER_TEST_
FOR_DOOR == true
) {
unittest("liteos_a_drivers_storage_unittest
_door
") {
if (LOSCFG_USER_TEST_
LEVEL >= TEST_LEVEL_MIDDLE
) {
unittest("liteos_a_drivers_storage_unittest") {
output_extension = "bin"
output_dir = "$root_out_dir/test/unittest/kernel"
include_dirs = common_include_dirs
sources = sources_entry
configs = [ "../..:public_config_smk" ]
deps = []
deps += [ ":sources_smoke" ]
sources += sources_smoke
sources += sources_full
configs = [ "../..:public_config_for_all" ]
deps = [ "//third_party/bounds_checking_function:libsec_shared" ]
}
}
\ No newline at end of file
testsuites/unittest/dynload/BUILD.gn
浏览文件 @
4d07d2e9
...
...
@@ -41,45 +41,37 @@ sources_entry = [
"dynload_test.cpp",
]
source_set("sources_smoke") {
sources = [
sources_smoke = [
"smoke/dynload_test_002.cpp",
"smoke/dynload_test_004.cpp",
]
configs += [ "..:local_public_config" ]
include_dirs = common_include_dirs
deps = [ "//third_party/bounds_checking_function:libsec_shared" ]
}
]
source_set("sources_other") {
sources = [
]
configs += [ "..:local_public_config" ]
include_dirs = common_include_dirs
deps = [ "//third_party/bounds_checking_function:libsec_shared" ]
}
sources_full = [
]
if (LOSCFG_USER_TEST_
FOR_ALL == true
) {
unittest("liteos_a_dynload_unittest") {
if (LOSCFG_USER_TEST_
LEVEL >= TEST_LEVEL_LOW
) {
unittest("liteos_a_dynload_unittest
_door
") {
output_extension = "bin"
output_dir = "$root_out_dir/test/unittest/kernel"
include_dirs = common_include_dirs
sources = sources_entry
configs = [ "..:public_config_full" ]
deps = []
deps += [ ":sources_smoke" ]
deps += [ ":sources_other" ]
sources += sources_smoke
sources_full = []
sources += sources_full
configs = [ "..:public_config_for_door" ]
deps = [ "//third_party/bounds_checking_function:libsec_shared" ]
}
}
if (LOSCFG_USER_TEST_
FOR_DOOR == true
) {
unittest("liteos_a_dynload_unittest
_door
") {
if (LOSCFG_USER_TEST_
LEVEL >= TEST_LEVEL_MIDDLE
) {
unittest("liteos_a_dynload_unittest") {
output_extension = "bin"
output_dir = "$root_out_dir/test/unittest/kernel"
include_dirs = common_include_dirs
sources = sources_entry
configs = [ "..:public_config_smk" ]
deps = []
deps += [ ":sources_smoke" ]
sources += sources_smoke
sources += sources_full
configs = [ "..:public_config_for_all" ]
deps = [ "//third_party/bounds_checking_function:libsec_shared" ]
}
}
\ No newline at end of file
testsuites/unittest/exc/BUILD.gn
浏览文件 @
4d07d2e9
...
...
@@ -41,49 +41,41 @@ sources_entry = [
"exc_test.cpp",
]
source_set("sources_smoke") {
sources = [
sources_smoke = [
"smoke/it_test_exc_001.cpp",
"smoke/it_test_exc_002.cpp",
"smoke/it_test_exc_003.cpp",
"smoke/it_test_exc_004.cpp",
"smoke/it_test_exc_005.cpp",
]
configs += [ "..:local_public_config" ]
include_dirs = common_include_dirs
deps = [ "//third_party/bounds_checking_function:libsec_shared" ]
}
]
source_set("sources_other") {
sources = [
sources_full = [
"full/it_test_fexecve_001.cpp",
]
configs += [ "..:local_public_config" ]
include_dirs = common_include_dirs
deps = [ "//third_party/bounds_checking_function:libsec_shared" ]
}
]
if (LOSCFG_USER_TEST_
FOR_ALL == true
) {
unittest("liteos_a_exc_unittest") {
if (LOSCFG_USER_TEST_
LEVEL >= TEST_LEVEL_LOW
) {
unittest("liteos_a_exc_unittest
_door
") {
output_extension = "bin"
output_dir = "$root_out_dir/test/unittest/kernel"
include_dirs = common_include_dirs
sources = sources_entry
configs = [ "..:public_config_full" ]
deps = []
deps += [ ":sources_smoke" ]
deps += [ ":sources_other" ]
sources += sources_smoke
sources_full = []
sources += sources_full
configs = [ "..:public_config_for_door" ]
deps = [ "//third_party/bounds_checking_function:libsec_shared" ]
}
}
if (LOSCFG_USER_TEST_
FOR_DOOR == true
) {
unittest("liteos_a_exc_unittest
_door
") {
if (LOSCFG_USER_TEST_
LEVEL >= TEST_LEVEL_MIDDLE
) {
unittest("liteos_a_exc_unittest") {
output_extension = "bin"
output_dir = "$root_out_dir/test/unittest/kernel"
include_dirs = common_include_dirs
sources = sources_entry
configs = [ "..:public_config_smk" ]
deps = []
deps += [ ":sources_smoke" ]
sources += sources_smoke
sources += sources_full
configs = [ "..:public_config_for_all" ]
deps = [ "//third_party/bounds_checking_function:libsec_shared" ]
}
}
\ No newline at end of file
testsuites/unittest/fs/BUILD.gn
浏览文件 @
4d07d2e9
...
...
@@ -42,8 +42,7 @@ sources_entry = [
"jffs/vfs_jffs_test.cpp",
]
source_set("sources_smoke") {
sources = [
sources_smoke = [
"jffs/smoke/It_vfs_jffs_001.cpp",
"jffs/smoke/It_vfs_jffs_002.cpp",
"jffs/smoke/It_vfs_jffs_003.cpp",
...
...
@@ -59,15 +58,9 @@ source_set("sources_smoke") {
#"jffs/smoke/It_vfs_jffs_103.cpp",
"jffs/smoke/It_vfs_jffs_535.cpp",
"jffs/smoke/It_vfs_jffs_Dac_001.cpp",
]
configs += [ "..:local_public_config" ]
include_dirs = common_include_dirs
deps = [ "//third_party/bounds_checking_function:libsec_shared" ]
}
]
if (LOSCFG_USER_TEST_PRESSURE == true) {
source_set("sources_pressure") {
sources = [
sources_pressure = [
"jffs/pressure/It_fs_jffs_performance_001.cpp",
"jffs/pressure/It_fs_jffs_performance_002.cpp",
"jffs/pressure/It_fs_jffs_performance_003.cpp",
...
...
@@ -211,14 +204,9 @@ if (LOSCFG_USER_TEST_PRESSURE == true) {
"jffs/pressure/It_vfs_jffs_multipthread_061.cpp",
"jffs/pressure/It_vfs_jffs_multipthread_062.cpp",
"jffs/pressure/It_vfs_jffs_multipthread_063.cpp",
]
include_dirs = common_include_dirs
deps = [ "//third_party/bounds_checking_function:libsec_shared" ]
}
}
]
source_set("sources_other") {
sources = [
sources_full = [
"jffs/full/It_jffs_001.cpp",
"jffs/full/It_jffs_002.cpp",
"jffs/full/It_jffs_003.cpp",
...
...
@@ -791,36 +779,51 @@ source_set("sources_other") {
"jffs/full/It_vfs_jffs_701.cpp",
"jffs/full/It_vfs_jffs_807.cpp",
"jffs/full/It_vfs_jffs_808.cpp",
]
configs += [ "..:local_public_config" ]
]
if (LOSCFG_USER_TEST_LEVEL >= TEST_LEVEL_LOW) {
unittest("liteos_a_fs_unittest_door") {
output_extension = "bin"
output_dir = "$root_out_dir/test/unittest/kernel"
include_dirs = common_include_dirs
sources = sources_entry
sources += sources_smoke
sources_full = []
sources += sources_full
sources_pressure = []
sources += sources_pressure
configs = [ "..:public_config_for_door" ]
deps = [ "//third_party/bounds_checking_function:libsec_shared" ]
}
}
if (LOSCFG_USER_TEST_
FOR_ALL == true
) {
if (LOSCFG_USER_TEST_
LEVEL >= TEST_LEVEL_MIDDLE
) {
unittest("liteos_a_fs_unittest") {
output_extension = "bin"
output_dir = "$root_out_dir/test/unittest/kernel"
include_dirs = common_include_dirs
sources = sources_entry
configs = [ "..:public_config_full" ]
deps = []
deps += [ ":sources_smoke" ]
if (LOSCFG_USER_TEST_PRESSURE == true) {
deps += [ ":sources_pressure" ]
}
deps += [ ":sources_other" ]
sources += sources_smoke
sources += sources_full
sources_pressure = []
sources += sources_pressure
configs = [ "..:public_config_for_all" ]
deps = [ "//third_party/bounds_checking_function:libsec_shared" ]
}
}
if (LOSCFG_USER_TEST_
FOR_DOOR == true
) {
unittest("liteos_a_fs_unittest_
door
") {
if (LOSCFG_USER_TEST_
LEVEL >= TEST_LEVEL_HIGH
) {
unittest("liteos_a_fs_unittest_
pressure
") {
output_extension = "bin"
output_dir = "$root_out_dir/test/unittest/kernel"
include_dirs = common_include_dirs
sources = sources_entry
configs = [ "..:public_config_smk" ]
deps = []
deps += [ ":sources_smoke" ]
sources_smoke = []
sources += sources_smoke
sources_full = []
sources += sources_full
sources += sources_pressure
configs = [ "..:public_config_for_pressure" ]
deps = [ "//third_party/bounds_checking_function:libsec_shared" ]
}
}
\ No newline at end of file
testsuites/unittest/fs/proc/BUILD.gn
浏览文件 @
4d07d2e9
...
...
@@ -41,49 +41,41 @@ sources_entry = [
"It_vfs_proc.cpp",
]
source_set("sources_smoke") {
sources = [
]
configs += [ "../..:local_public_config" ]
include_dirs = common_include_dirs
deps = [ "//third_party/bounds_checking_function:libsec_shared" ]
}
sources_smoke = [
]
source_set("sources_other") {
sources = [
sources_full = [
"full/It_vfs_proc_001.cpp",
"full/It_vfs_proc_002.cpp",
"full/It_vfs_proc_003.cpp",
"full/It_vfs_proc_004.cpp",
"full/It_vfs_proc_005.cpp",
"full/It_vfs_proc_006.cpp",
]
configs += [ "../..:local_public_config" ]
include_dirs = common_include_dirs
deps = [ "//third_party/bounds_checking_function:libsec_shared" ]
}
]
if (LOSCFG_USER_TEST_
FOR_ALL == true
) {
unittest("liteos_a_fs_procfs_unittest") {
if (LOSCFG_USER_TEST_
LEVEL >= TEST_LEVEL_LOW
) {
unittest("liteos_a_fs_procfs_unittest
_door
") {
output_extension = "bin"
output_dir = "$root_out_dir/test/unittest/kernel"
include_dirs = common_include_dirs
sources = sources_entry
configs = [ "../..:public_config_full" ]
deps = []
deps += [ ":sources_smoke" ]
deps += [ ":sources_other" ]
sources += sources_smoke
sources_full = []
sources += sources_full
configs = [ "../..:public_config_for_door" ]
deps = [ "//third_party/bounds_checking_function:libsec_shared" ]
}
}
if (LOSCFG_USER_TEST_
FOR_DOOR == true
) {
unittest("liteos_a_fs_procfs_unittest
_door
") {
if (LOSCFG_USER_TEST_
LEVEL >= TEST_LEVEL_MIDDLE
) {
unittest("liteos_a_fs_procfs_unittest") {
output_extension = "bin"
output_dir = "$root_out_dir/test/unittest/kernel"
include_dirs = common_include_dirs
sources = sources_entry
configs = [ "../..:public_config_smk" ]
deps = []
deps += [ ":sources_smoke" ]
sources += sources_smoke
sources += sources_full
configs = [ "../..:public_config_for_all" ]
deps = [ "//third_party/bounds_checking_function:libsec_shared" ]
}
}
\ No newline at end of file
testsuites/unittest/fs/vfat2/BUILD.gn
浏览文件 @
4d07d2e9
...
...
@@ -42,18 +42,11 @@ sources_entry = [
"VfsFatTest.cpp",
]
source_set("sources_smoke") {
sources = [
sources_smoke = [
"smoke/It_vfs_fat_026.cpp",
]
configs += [ "../..:local_public_config" ]
include_dirs = common_include_dirs
deps = [ "//third_party/bounds_checking_function:libsec_shared" ]
}
]
if (LOSCFG_USER_TEST_PRESSURE == true) {
source_set("sources_pressure") {
sources = [
sources_pressure = [
"pressure/It_fs_fat_performance_001.cpp",
"pressure/It_fs_fat_performance_002.cpp",
"pressure/It_fs_fat_performance_003.cpp",
...
...
@@ -119,14 +112,9 @@ if (LOSCFG_USER_TEST_PRESSURE == true) {
"pressure/It_vfs_fat_mutipthread_048.cpp",
"pressure/It_vfs_fat_mutipthread_049.cpp",
"pressure/It_vfs_fat_mutipthread_050.cpp",
]
include_dirs = common_include_dirs
deps = [ "//third_party/bounds_checking_function:libsec_shared" ]
}
}
]
source_set("sources_other") {
sources = [
sources_full = [
"full/It_vfs_fat_066.cpp",
"full/It_vfs_fat_068.cpp",
"full/It_vfs_fat_072.cpp",
...
...
@@ -193,36 +181,51 @@ source_set("sources_other") {
"full/It_vfs_fat_903.cpp",
"full/It_vfs_fat_904.cpp",
"full/It_vfs_fat_909.cpp",
]
configs += [ "../..:local_public_config" ]
]
if (LOSCFG_USER_TEST_LEVEL >= TEST_LEVEL_LOW) {
unittest("liteos_a_fs_vfat_unittest_door") {
output_extension = "bin"
output_dir = "$root_out_dir/test/unittest/kernel"
include_dirs = common_include_dirs
sources = sources_entry
sources += sources_smoke
sources_full = []
sources += sources_full
sources_pressure = []
sources += sources_pressure
configs = [ "../..:public_config_for_door" ]
deps = [ "//third_party/bounds_checking_function:libsec_shared" ]
}
}
if (LOSCFG_USER_TEST_
FOR_ALL == true
) {
if (LOSCFG_USER_TEST_
LEVEL >= TEST_LEVEL_MIDDLE
) {
unittest("liteos_a_fs_vfat_unittest") {
output_extension = "bin"
output_dir = "$root_out_dir/test/unittest/kernel"
include_dirs = common_include_dirs
sources = sources_entry
configs = [ "../..:public_config_full" ]
deps = []
deps += [ ":sources_smoke" ]
if (LOSCFG_USER_TEST_PRESSURE == true) {
deps += [ ":sources_pressure" ]
}
deps += [ ":sources_other" ]
sources += sources_smoke
sources += sources_full
sources_pressure = []
sources += sources_pressure
configs = [ "../..:public_config_for_all" ]
deps = [ "//third_party/bounds_checking_function:libsec_shared" ]
}
}
if (LOSCFG_USER_TEST_
FOR_DOOR == true
) {
unittest("liteos_a_fs_vfat_unittest_
door
") {
if (LOSCFG_USER_TEST_
LEVEL >= TEST_LEVEL_HIGH
) {
unittest("liteos_a_fs_vfat_unittest_
pressure
") {
output_extension = "bin"
output_dir = "$root_out_dir/test/unittest/kernel"
include_dirs = common_include_dirs
sources = sources_entry
configs = [ "../..:public_config_smk" ]
deps = []
deps += [ ":sources_smoke" ]
sources_smoke = []
sources += sources_smoke
sources_full = []
sources += sources_full
sources += sources_pressure
configs = [ "../..:public_config_for_pressure" ]
deps = [ "//third_party/bounds_checking_function:libsec_shared" ]
}
}
testsuites/unittest/liteipc/BUILD.gn
浏览文件 @
4d07d2e9
...
...
@@ -42,45 +42,37 @@ sources_entry = [
"it_test_liteipc.cpp",
]
source_set("sources_smoke") {
sources = [
sources_smoke = [
"smoke/liteipc_test_001.cpp",
"smoke/liteipc_test_002.cpp",
]
configs += [ "..:local_public_config" ]
include_dirs = common_include_dirs
deps = [ "//third_party/bounds_checking_function:libsec_shared" ]
}
]
source_set("sources_other") {
sources = [
]
configs += [ "..:local_public_config" ]
include_dirs = common_include_dirs
deps = [ "//third_party/bounds_checking_function:libsec_shared" ]
}
sources_full = [
]
if (LOSCFG_USER_TEST_
FOR_ALL == true
) {
unittest("liteos_a_liteipc_unittest") {
if (LOSCFG_USER_TEST_
LEVEL >= TEST_LEVEL_LOW
) {
unittest("liteos_a_liteipc_unittest
_door
") {
output_extension = "bin"
output_dir = "$root_out_dir/test/unittest/kernel"
include_dirs = common_include_dirs
sources = sources_entry
configs = [ "..:public_config_full" ]
deps = []
deps += [ ":sources_smoke" ]
deps += [ ":sources_other" ]
sources += sources_smoke
sources_full = []
sources += sources_full
configs = [ "..:public_config_for_door" ]
deps = [ "//third_party/bounds_checking_function:libsec_shared" ]
}
}
if (LOSCFG_USER_TEST_
FOR_DOOR == true
) {
unittest("liteos_a_liteipc_unittest
_door
") {
if (LOSCFG_USER_TEST_
LEVEL >= TEST_LEVEL_MIDDLE
) {
unittest("liteos_a_liteipc_unittest") {
output_extension = "bin"
output_dir = "$root_out_dir/test/unittest/kernel"
include_dirs = common_include_dirs
sources = sources_entry
configs = [ "..:public_config_smk" ]
deps = []
deps += [ ":sources_smoke" ]
sources += sources_smoke
sources += sources_full
configs = [ "..:public_config_for_all" ]
deps = [ "//third_party/bounds_checking_function:libsec_shared" ]
}
}
testsuites/unittest/mem/shm/BUILD.gn
浏览文件 @
4d07d2e9
...
...
@@ -41,8 +41,7 @@ sources_entry = [
"mem_shm_test.cpp",
]
source_set("sources_smoke") {
sources = [
sources_smoke = [
"smoke/shm_test_001.cpp",
"smoke/shm_test_002.cpp",
"smoke/shm_test_003.cpp",
...
...
@@ -57,41 +56,34 @@ source_set("sources_smoke") {
"smoke/shm_test_012.cpp",
"smoke/shm_test_013.cpp",
"smoke/shm_test_014.cpp",
]
configs += [ "../..:local_public_config" ]
include_dirs = common_include_dirs
deps = [ "//third_party/bounds_checking_function:libsec_shared" ]
}
]
source_set("sources_other") {
sources = [
]
configs += [ "../..:local_public_config" ]
include_dirs = common_include_dirs
deps = [ "//third_party/bounds_checking_function:libsec_shared" ]
}
sources_full = [
]
if (LOSCFG_USER_TEST_
FOR_ALL == true
) {
unittest("liteos_a_mem_shm_unittest") {
if (LOSCFG_USER_TEST_
LEVEL >= TEST_LEVEL_LOW
) {
unittest("liteos_a_mem_shm_unittest
_door
") {
output_extension = "bin"
output_dir = "$root_out_dir/test/unittest/kernel"
include_dirs = common_include_dirs
sources = sources_entry
configs = [ "../..:public_config_full" ]
deps = []
deps += [ ":sources_smoke" ]
deps += [ ":sources_other" ]
sources += sources_smoke
sources_full = []
sources += sources_full
configs = [ "../..:public_config_for_door" ]
deps = [ "//third_party/bounds_checking_function:libsec_shared" ]
}
}
if (LOSCFG_USER_TEST_
FOR_DOOR == true
) {
unittest("liteos_a_mem_shm_unittest
_door
") {
if (LOSCFG_USER_TEST_
LEVEL >= TEST_LEVEL_MIDDLE
) {
unittest("liteos_a_mem_shm_unittest") {
output_extension = "bin"
output_dir = "$root_out_dir/test/unittest/kernel"
include_dirs = common_include_dirs
sources = sources_entry
configs = [ "../..:public_config_smk" ]
deps = []
deps += [ ":sources_smoke" ]
sources += sources_smoke
sources += sources_full
configs = [ "../..:public_config_for_all" ]
deps = [ "//third_party/bounds_checking_function:libsec_shared" ]
}
}
testsuites/unittest/mem/vm/BUILD.gn
浏览文件 @
4d07d2e9
...
...
@@ -41,8 +41,7 @@ sources_entry = [
"mem_vm_test.cpp",
]
source_set("sources_smoke") {
sources = [
sources_smoke = [
"smoke/mmap_test_001.cpp",
"smoke/mmap_test_002.cpp",
"smoke/mmap_test_003.cpp",
...
...
@@ -58,41 +57,34 @@ source_set("sources_smoke") {
"smoke/oom_test_001.cpp",
"smoke/open_wmemstream_test_001.cpp",
"smoke/user_copy_test_001.cpp",
]
configs += [ "../..:local_public_config" ]
include_dirs = common_include_dirs
deps = [ "//third_party/bounds_checking_function:libsec_shared" ]
}
]
source_set("sources_other") {
sources = [
]
configs += [ "../..:local_public_config" ]
include_dirs = common_include_dirs
deps = [ "//third_party/bounds_checking_function:libsec_shared" ]
}
sources_full = [
]
if (LOSCFG_USER_TEST_
FOR_ALL == true
) {
unittest("liteos_a_mem_vm_unittest") {
if (LOSCFG_USER_TEST_
LEVEL >= TEST_LEVEL_LOW
) {
unittest("liteos_a_mem_vm_unittest
_door
") {
output_extension = "bin"
output_dir = "$root_out_dir/test/unittest/kernel"
include_dirs = common_include_dirs
sources = sources_entry
configs = [ "../..:public_config_full" ]
deps = []
deps += [ ":sources_smoke" ]
deps += [ ":sources_other" ]
sources += sources_smoke
sources_full = []
sources += sources_full
configs = [ "../..:public_config_for_door" ]
deps = [ "//third_party/bounds_checking_function:libsec_shared" ]
}
}
if (LOSCFG_USER_TEST_
FOR_DOOR == true
) {
unittest("liteos_a_mem_vm_unittest
_door
") {
if (LOSCFG_USER_TEST_
LEVEL >= TEST_LEVEL_MIDDLE
) {
unittest("liteos_a_mem_vm_unittest") {
output_extension = "bin"
output_dir = "$root_out_dir/test/unittest/kernel"
include_dirs = common_include_dirs
sources = sources_entry
configs = [ "../..:public_config_smk" ]
deps = []
deps += [ ":sources_smoke" ]
sources += sources_smoke
sources += sources_full
configs = [ "../..:public_config_for_all" ]
deps = [ "//third_party/bounds_checking_function:libsec_shared" ]
}
}
testsuites/unittest/misc/BUILD.gn
浏览文件 @
4d07d2e9
...
...
@@ -41,22 +41,16 @@ sources_entry = [
"misc_test.cpp",
]
source_set("sources_other") {
sources = [
sources_full = [
"full/misc_test_006.cpp",
"full/misc_test_007.cpp",
"full/misc_test_010.cpp",
"full/misc_test_011.cpp",
"full/misc_test_012.cpp",
"full/misc_test_013.cpp",
]
configs += [ "..:local_public_config" ]
include_dirs = common_include_dirs
deps = [ "//third_party/bounds_checking_function:libsec_shared" ]
}
]
source_set("sources_smoke") {
sources = [
sources_smoke = [
"smoke/misc_test_001.cpp",
"smoke/misc_test_002.cpp",
"smoke/misc_test_003.cpp",
...
...
@@ -65,33 +59,31 @@ source_set("sources_smoke") {
"smoke/misc_test_008.cpp",
"smoke/misc_test_009.cpp",
"smoke/misc_test_014.cpp",
]
configs += [ "..:local_public_config" ]
include_dirs = common_include_dirs
deps = [ "//third_party/bounds_checking_function:libsec_shared" ]
}
]
if (LOSCFG_USER_TEST_
FOR_ALL == true
) {
unittest("liteos_a_misc_unittest") {
if (LOSCFG_USER_TEST_
LEVEL >= TEST_LEVEL_LOW
) {
unittest("liteos_a_misc_unittest
_door
") {
output_extension = "bin"
output_dir = "$root_out_dir/test/unittest/kernel"
include_dirs = common_include_dirs
sources = sources_entry
configs = [ "..:public_config_full" ]
deps = []
deps += [ ":sources_smoke" ]
deps += [ ":sources_other" ]
sources += sources_smoke
sources_full = []
sources += sources_full
configs = [ "..:public_config_for_door" ]
deps = [ "//third_party/bounds_checking_function:libsec_shared" ]
}
}
if (LOSCFG_USER_TEST_
FOR_DOOR == true
) {
unittest("liteos_a_misc_unittest
_door
") {
if (LOSCFG_USER_TEST_
LEVEL >= TEST_LEVEL_MIDDLE
) {
unittest("liteos_a_misc_unittest") {
output_extension = "bin"
output_dir = "$root_out_dir/test/unittest/kernel"
include_dirs = common_include_dirs
sources = sources_entry
configs = [ "..:public_config_smk" ]
deps = []
deps += [ ":sources_smoke" ]
sources += sources_smoke
sources += sources_full
configs = [ "..:public_config_for_all" ]
deps = [ "//third_party/bounds_checking_function:libsec_shared" ]
}
}
\ No newline at end of file
testsuites/unittest/net/netdb/BUILD.gn
浏览文件 @
4d07d2e9
...
...
@@ -48,18 +48,12 @@ sources_entry = [
"net_netdb_test.cpp",
]
source_set("sources_smoke") {
sources = [
sources_smoke = [
"smoke/net_netdb_test_001.cpp",
"smoke/net_netdb_test_013.cpp",
]
configs += [ "../..:local_public_config" ]
include_dirs = common_include_dirs
deps = [ "//third_party/bounds_checking_function:libsec_shared" ]
}
]
source_set("sources_other") {
sources = [
sources_full = [
"full/net_netdb_test_002.cpp",
"full/net_netdb_test_003.cpp",
"full/net_netdb_test_004.cpp",
...
...
@@ -80,33 +74,33 @@ source_set("sources_other") {
"full/net_netdb_test_020.cpp",
"full/net_netdb_test_021.cpp",
"full/net_netdb_test_022.cpp",
]
configs += [ "../..:local_public_config" ]
include_dirs = common_include_dirs
deps = [ "//third_party/bounds_checking_function:libsec_shared" ]
}
]
unittest("liteos_a_net_netdb_unittest") {
if (LOSCFG_USER_TEST_LEVEL >= TEST_LEVEL_LOW) {
unittest("liteos_a_net_netdb_unittest_door") {
output_extension = "bin"
output_dir = "$root_out_dir/test/unittest/kernel"
include_dirs = common_include_dirs
sources = sources_entry
configs = [ "../..:public_config_full" ]
sources += sources_smoke
sources_full = []
sources += sources_full
configs = [ "../..:public_config_for_door" ]
configs += [ ":net_local_config" ]
deps = []
deps += [ ":sources_smoke" ]
deps += [ ":sources_other" ]
deps = [ "//third_party/bounds_checking_function:libsec_shared" ]
}
}
if (LOSCFG_USER_TEST_
FOR_DOOR == true
) {
unittest("liteos_a_net_netdb_unittest
_door
") {
if (LOSCFG_USER_TEST_
LEVEL >= TEST_LEVEL_MIDDLE
) {
unittest("liteos_a_net_netdb_unittest") {
output_extension = "bin"
output_dir = "$root_out_dir/test/unittest/kernel"
include_dirs = common_include_dirs
sources = sources_entry
configs = [ "../..:public_config_smk" ]
sources += sources_full
sources += sources_smoke
configs = [ "../..:public_config_for_all" ]
configs += [ ":net_local_config" ]
deps = []
deps += [ ":sources_smoke" ]
deps = [ "//third_party/bounds_checking_function:libsec_shared" ]
}
}
testsuites/unittest/net/resolv/BUILD.gn
浏览文件 @
4d07d2e9
...
...
@@ -48,53 +48,45 @@ sources_entry = [
"net_resolv_test.cpp",
]
source_set("sources_smoke") {
sources = [
sources_smoke = [
"smoke/net_resolv_test_001.cpp",
"smoke/net_resolv_test_002.cpp",
"smoke/net_resolv_test_003.cpp",
"smoke/net_resolv_test_006.cpp",
"smoke/net_resolv_test_007.cpp",
]
configs += [ "../..:local_public_config" ]
include_dirs = common_include_dirs
deps = [ "//third_party/bounds_checking_function:libsec_shared" ]
}
]
source_set("sources_other") {
sources = [
sources_full = [
"full/net_resolv_test_004.cpp",
"full/net_resolv_test_005.cpp",
"full/net_resolv_test_008.cpp",
]
configs += [ "../..:local_public_config" ]
include_dirs = common_include_dirs
deps = [ "//third_party/bounds_checking_function:libsec_shared" ]
}
]
if (LOSCFG_USER_TEST_
FOR_ALL == true
) {
unittest("liteos_a_net_resolv_unittest") {
if (LOSCFG_USER_TEST_
LEVEL >= TEST_LEVEL_LOW
) {
unittest("liteos_a_net_resolv_unittest
_door
") {
output_extension = "bin"
output_dir = "$root_out_dir/test/unittest/kernel"
include_dirs = common_include_dirs
sources = sources_entry
configs = [ "../..:public_config_full" ]
sources += sources_smoke
sources_full = []
sources += sources_full
configs = [ "../..:public_config_for_door" ]
configs += [ ":net_local_config" ]
deps = []
deps += [ ":sources_smoke" ]
deps += [ ":sources_other" ]
deps = [ "//third_party/bounds_checking_function:libsec_shared" ]
}
}
if (LOSCFG_USER_TEST_
FOR_DOOR == true
) {
unittest("liteos_a_net_resolv_unittest
_door
") {
if (LOSCFG_USER_TEST_
LEVEL >= TEST_LEVEL_MIDDLE
) {
unittest("liteos_a_net_resolv_unittest") {
output_extension = "bin"
output_dir = "$root_out_dir/test/unittest/kernel"
include_dirs = common_include_dirs
sources = sources_entry
configs = [ "../..:public_config_smk" ]
sources += sources_smoke
sources += sources_full
configs = [ "../..:public_config_for_all" ]
configs += [ ":net_local_config" ]
deps = []
deps += [ ":sources_smoke" ]
deps = [ "//third_party/bounds_checking_function:libsec_shared" ]
}
}
testsuites/unittest/net/socket/BUILD.gn
浏览文件 @
4d07d2e9
...
...
@@ -48,8 +48,7 @@ sources_entry = [
"net_socket_test.cpp",
]
source_set("sources_smoke") {
sources = [
sources_smoke = [
"smoke/net_socket_test_001.cpp",
"smoke/net_socket_test_002.cpp",
"smoke/net_socket_test_003.cpp",
...
...
@@ -63,43 +62,36 @@ source_set("sources_smoke") {
"smoke/net_socket_test_011.cpp",
"smoke/net_socket_test_012.cpp",
"smoke/net_socket_test_013.cpp",
]
configs += [ "../..:local_public_config" ]
include_dirs = common_include_dirs
deps = [ "//third_party/bounds_checking_function:libsec_shared" ]
}
]
source_set("sources_other") {
sources = [
]
configs += [ "../..:local_public_config" ]
include_dirs = common_include_dirs
deps = [ "//third_party/bounds_checking_function:libsec_shared" ]
}
sources_full = [
]
if (LOSCFG_USER_TEST_
FOR_ALL == true
) {
unittest("liteos_a_net_socket_unittest") {
if (LOSCFG_USER_TEST_
LEVEL >= TEST_LEVEL_LOW
) {
unittest("liteos_a_net_socket_unittest
_door
") {
output_extension = "bin"
output_dir = "$root_out_dir/test/unittest/kernel"
include_dirs = common_include_dirs
sources = sources_entry
configs = [ "../..:public_config_full" ]
sources += sources_smoke
sources_full = []
sources += sources_full
configs = [ "../..:public_config_for_door" ]
configs += [ ":net_local_config" ]
deps = []
deps += [ ":sources_smoke" ]
deps += [ ":sources_other" ]
deps = [ "//third_party/bounds_checking_function:libsec_shared" ]
}
}
if (LOSCFG_USER_TEST_
FOR_DOOR == true
) {
unittest("liteos_a_net_socket_unittest
_door
") {
if (LOSCFG_USER_TEST_
LEVEL >= TEST_LEVEL_MIDDLE
) {
unittest("liteos_a_net_socket_unittest") {
output_extension = "bin"
output_dir = "$root_out_dir/test/unittest/kernel"
include_dirs = common_include_dirs
sources = sources_entry
configs = [ "../..:public_config_smk" ]
sources += sources_smoke
sources += sources_full
configs = [ "../..:public_config_for_all" ]
configs += [ ":net_local_config" ]
deps = []
deps += [ ":sources_smoke" ]
deps = [ "//third_party/bounds_checking_function:libsec_shared" ]
}
}
testsuites/unittest/posix/mem/BUILD.gn
浏览文件 @
4d07d2e9
...
...
@@ -41,45 +41,37 @@ sources_entry = [
"posix_mem_test.cpp",
]
source_set("sources_smoke") {
sources = [
sources_smoke = [
"smoke/It_posix_mem_001.cpp",
"smoke/It_posix_mem_003.cpp",
]
configs += [ "../..:local_public_config" ]
include_dirs = common_include_dirs
deps = [ "//third_party/bounds_checking_function:libsec_shared" ]
}
]
source_set("sources_other") {
sources = [
]
configs += [ "../..:local_public_config" ]
include_dirs = common_include_dirs
deps = [ "//third_party/bounds_checking_function:libsec_shared" ]
}
sources_full = [
]
if (LOSCFG_USER_TEST_
FOR_ALL == true
) {
unittest("liteos_a_posix_mem_unittest") {
if (LOSCFG_USER_TEST_
LEVEL >= TEST_LEVEL_LOW
) {
unittest("liteos_a_posix_mem_unittest
_door
") {
output_extension = "bin"
output_dir = "$root_out_dir/test/unittest/kernel"
include_dirs = common_include_dirs
sources = sources_entry
configs = [ "../..:public_config_full" ]
deps = []
deps += [ ":sources_smoke" ]
deps += [ ":sources_other" ]
sources += sources_smoke
sources_full = []
sources += sources_full
configs = [ "../..:public_config_for_door" ]
deps = [ "//third_party/bounds_checking_function:libsec_shared" ]
}
}
if (LOSCFG_USER_TEST_
FOR_DOOR == true
) {
unittest("liteos_a_posix_mem_unittest
_door
") {
if (LOSCFG_USER_TEST_
LEVEL >= TEST_LEVEL_MIDDLE
) {
unittest("liteos_a_posix_mem_unittest") {
output_extension = "bin"
output_dir = "$root_out_dir/test/unittest/kernel"
include_dirs = common_include_dirs
sources = sources_entry
configs = [ "../..:public_config_smk" ]
deps = []
deps += [ ":sources_smoke" ]
sources += sources_smoke
sources += sources_full
configs = [ "../..:public_config_for_all" ]
deps = [ "//third_party/bounds_checking_function:libsec_shared" ]
}
}
testsuites/unittest/posix/mqueue/BUILD.gn
浏览文件 @
4d07d2e9
...
...
@@ -46,8 +46,7 @@ sources_entry = [
"posix_mqueue_test.cpp",
]
source_set("sources_smoke") {
sources = [
sources_smoke = [
"smoke/It_posix_queue_001.cpp",
"smoke/It_posix_queue_003.cpp",
"smoke/It_posix_queue_028.cpp",
...
...
@@ -59,14 +58,9 @@ source_set("sources_smoke") {
"smoke/It_posix_queue_207.cpp",
"smoke/It_posix_queue_208.cpp",
"smoke/It_posix_queue_209.cpp",
]
configs += [ "../..:local_public_config" ]
include_dirs = common_include_dirs
deps = [ "//third_party/bounds_checking_function:libsec_shared" ]
}
]
source_set("sources_other") {
sources = [
sources_full = [
"full/It_posix_queue_002.cpp",
"full/It_posix_queue_005.cpp",
"full/It_posix_queue_008.cpp",
...
...
@@ -206,35 +200,33 @@ source_set("sources_other") {
"full/It_posix_queue_202.cpp",
"full/It_posix_queue_203.cpp",
"full/It_posix_queue_204.cpp",
]
configs += [ "../..:local_public_config" ]
include_dirs = common_include_dirs
deps = [ "//third_party/bounds_checking_function:libsec_shared" ]
}
]
if (LOSCFG_USER_TEST_
FOR_ALL == true
) {
unittest("liteos_a_posix_mqueue_unittest") {
if (LOSCFG_USER_TEST_
LEVEL >= TEST_LEVEL_LOW
) {
unittest("liteos_a_posix_mqueue_unittest
_door
") {
output_extension = "bin"
output_dir = "$root_out_dir/test/unittest/kernel"
include_dirs = common_include_dirs
sources = sources_entry
configs = [ "../..:public_config_full" ]
sources += sources_smoke
sources_full = []
sources += sources_full
configs = [ "../..:public_config_for_door" ]
configs += [ ":mqueue_config" ]
deps = []
deps += [ ":sources_smoke" ]
deps += [ ":sources_other" ]
deps = [ "//third_party/bounds_checking_function:libsec_shared" ]
}
}
if (LOSCFG_USER_TEST_
FOR_DOOR == true
) {
unittest("liteos_a_posix_mqueue_unittest
_door
") {
if (LOSCFG_USER_TEST_
LEVEL >= TEST_LEVEL_MIDDLE
) {
unittest("liteos_a_posix_mqueue_unittest") {
output_extension = "bin"
output_dir = "$root_out_dir/test/unittest/kernel"
include_dirs = common_include_dirs
sources = sources_entry
configs = [ "../..:public_config_smk" ]
sources += sources_smoke
sources += sources_full
configs = [ "../..:public_config_for_all" ]
configs += [ ":mqueue_config" ]
deps = []
deps += [ ":sources_smoke" ]
deps = [ "//third_party/bounds_checking_function:libsec_shared" ]
}
}
testsuites/unittest/posix/pthread/BUILD.gn
浏览文件 @
4d07d2e9
...
...
@@ -46,8 +46,7 @@ sources_entry = [
"posix_pthread_test.cpp",
]
source_set("sources_smoke") {
sources = [
sources_smoke = [
"smoke/It_posix_pthread_003.cpp",
"smoke/It_posix_pthread_004.cpp",
"smoke/It_posix_pthread_005.cpp",
...
...
@@ -58,14 +57,9 @@ source_set("sources_smoke") {
"smoke/It_posix_pthread_021.cpp",
"smoke/It_posix_pthread_022.cpp",
"smoke/It_posix_pthread_203.cpp",
]
configs += [ "../..:local_public_config" ]
include_dirs = common_include_dirs
deps = [ "//third_party/bounds_checking_function:libsec_shared" ]
}
]
source_set("sources_other") {
sources = [
sources_full = [
"full/It_posix_pthread_001.cpp",
"full/It_posix_pthread_002.cpp",
"full/It_posix_pthread_007.cpp",
...
...
@@ -171,35 +165,31 @@ source_set("sources_other") {
"full/It_posix_pthread_239.cpp",
"full/It_posix_pthread_240.cpp",
"full/It_posix_pthread_241.cpp",
]
configs += [ "../..:local_public_config" ]
include_dirs = common_include_dirs
deps = [ "//third_party/bounds_checking_function:libsec_shared" ]
}
]
if (LOSCFG_USER_TEST_
FOR_ALL == true
) {
unittest("liteos_a_posix_pthread_unittest") {
if (LOSCFG_USER_TEST_
LEVEL >= TEST_LEVEL_LOW
) {
unittest("liteos_a_posix_pthread_unittest
_door
") {
output_extension = "bin"
output_dir = "$root_out_dir/test/unittest/kernel"
include_dirs = common_include_dirs
sources = sources_entry
configs = [ "../..:public_config_full" ]
sources += sources_smoke
sources_full = []
sources += sources_full
configs = [ "../..:public_config_for_door" ]
configs += [ ":pthread_config" ]
deps = []
deps += [ ":sources_smoke" ]
deps += [ ":sources_other" ]
}
}
if (LOSCFG_USER_TEST_
FOR_DOOR == true
) {
unittest("liteos_a_posix_pthread_unittest
_door
") {
if (LOSCFG_USER_TEST_
LEVEL >= TEST_LEVEL_MIDDLE
) {
unittest("liteos_a_posix_pthread_unittest") {
output_extension = "bin"
output_dir = "$root_out_dir/test/unittest/kernel"
include_dirs = common_include_dirs
sources = sources_entry
configs = [ "../..:public_config_smk" ]
sources += sources_smoke
sources += sources_full
configs = [ "../..:public_config_for_all" ]
configs += [ ":pthread_config" ]
deps = []
deps += [ ":sources_smoke" ]
}
}
testsuites/unittest/process/mutex/BUILD.gn
浏览文件 @
4d07d2e9
...
...
@@ -41,8 +41,7 @@ sources_entry = [
"process_mutex_test.cpp",
]
source_set("sources_smoke") {
sources = [
sources_smoke = [
"smoke/pthread_mutex_test_001.cpp",
"smoke/pthread_mutex_test_002.cpp",
"smoke/pthread_mutex_test_003.cpp",
...
...
@@ -68,41 +67,34 @@ source_set("sources_smoke") {
"smoke/pthread_mutex_test_023.cpp",
"smoke/pthread_mutex_test_024.cpp",
"smoke/pthread_mutex_test_025.cpp",
]
configs += [ "../..:local_public_config" ]
include_dirs = common_include_dirs
deps = [ "//third_party/bounds_checking_function:libsec_shared" ]
}
]
source_set("sources_other") {
sources = [
]
configs += [ "../..:local_public_config" ]
include_dirs = common_include_dirs
deps = [ "//third_party/bounds_checking_function:libsec_shared" ]
}
sources_full = [
]
if (LOSCFG_USER_TEST_
FOR_ALL == true
) {
unittest("liteos_a_mutex_unittest") {
if (LOSCFG_USER_TEST_
LEVEL >= TEST_LEVEL_LOW
) {
unittest("liteos_a_mutex_unittest
_door
") {
output_extension = "bin"
output_dir = "$root_out_dir/test/unittest/kernel"
include_dirs = common_include_dirs
sources = sources_entry
configs = [ "../..:public_config_full" ]
deps = []
deps += [ ":sources_smoke" ]
deps += [ ":sources_other" ]
sources += sources_smoke
sources_full = []
sources += sources_full
configs = [ "../..:public_config_for_door" ]
deps = [ "//third_party/bounds_checking_function:libsec_shared" ]
}
}
if (LOSCFG_USER_TEST_
FOR_DOOR == true
) {
unittest("liteos_a_mutex_unittest
_door
") {
if (LOSCFG_USER_TEST_
LEVEL >= TEST_LEVEL_MIDDLE
) {
unittest("liteos_a_mutex_unittest") {
output_extension = "bin"
output_dir = "$root_out_dir/test/unittest/kernel"
include_dirs = common_include_dirs
sources = sources_entry
configs = [ "../..:public_config_smk" ]
deps = []
deps += [ ":sources_smoke" ]
sources += sources_smoke
sources += sources_full
configs = [ "../..:public_config_for_all" ]
deps = [ "//third_party/bounds_checking_function:libsec_shared" ]
}
}
testsuites/unittest/process/process/BUILD.gn
浏览文件 @
4d07d2e9
...
...
@@ -41,8 +41,7 @@ sources_entry = [
"process_process_test.cpp",
]
source_set("sources_smoke") {
sources = [
sources_smoke = [
"smoke/process_test_001.cpp",
"smoke/process_test_002.cpp",
"smoke/process_test_004.cpp",
...
...
@@ -117,41 +116,34 @@ source_set("sources_smoke") {
"smp/process_test_smp_006.cpp",
"smp/process_test_smp_007.cpp",
"smp/process_test_smp_008.cpp",
]
configs += [ "../..:local_public_config" ]
include_dirs = common_include_dirs
deps = [ "//third_party/bounds_checking_function:libsec_shared" ]
}
]
source_set("sources_other") {
sources = [
]
configs += [ "../..:local_public_config" ]
include_dirs = common_include_dirs
deps = [ "//third_party/bounds_checking_function:libsec_shared" ]
}
sources_full = [
]
if (LOSCFG_USER_TEST_
FOR_ALL == true
) {
unittest("liteos_a_process_unittest") {
if (LOSCFG_USER_TEST_
LEVEL >= TEST_LEVEL_LOW
) {
unittest("liteos_a_process_unittest
_door
") {
output_extension = "bin"
output_dir = "$root_out_dir/test/unittest/kernel"
include_dirs = common_include_dirs
sources = sources_entry
configs = [ "../..:public_config_full" ]
deps = []
deps += [ ":sources_smoke" ]
deps += [ ":sources_other" ]
sources += sources_smoke
sources_full = []
sources += sources_full
configs = [ "../..:public_config_for_door" ]
deps = [ "//third_party/bounds_checking_function:libsec_shared" ]
}
}
if (LOSCFG_USER_TEST_
FOR_DOOR == true
) {
unittest("liteos_a_process_unittest
_door
") {
if (LOSCFG_USER_TEST_
LEVEL >= TEST_LEVEL_MIDDLE
) {
unittest("liteos_a_process_unittest") {
output_extension = "bin"
output_dir = "$root_out_dir/test/unittest/kernel"
include_dirs = common_include_dirs
sources = sources_entry
configs = [ "../..:public_config_smk" ]
deps = []
deps += [ ":sources_smoke" ]
sources += sources_smoke
sources += sources_full
configs = [ "../..:public_config_for_all" ]
deps = [ "//third_party/bounds_checking_function:libsec_shared" ]
}
}
testsuites/unittest/process/pthread/BUILD.gn
浏览文件 @
4d07d2e9
...
...
@@ -41,8 +41,7 @@ sources_entry = [
"process_pthread_test.cpp",
]
source_set("sources_smoke") {
sources = [
sources_smoke = [
"smoke/pthread_atfork_test_001.cpp",
"smoke/pthread_atfork_test_002.cpp",
"smoke/pthread_cond_test_001.cpp",
...
...
@@ -67,41 +66,34 @@ source_set("sources_smoke") {
"smoke/pthread_test_017.cpp",
"smoke/pthread_test_018.cpp",
"smoke/pthread_test_019.cpp",
]
configs += [ "../..:local_public_config" ]
include_dirs = common_include_dirs
deps = [ "//third_party/bounds_checking_function:libsec_shared" ]
}
]
source_set("sources_other") {
sources = [
]
configs += [ "../..:local_public_config" ]
include_dirs = common_include_dirs
deps = [ "//third_party/bounds_checking_function:libsec_shared" ]
}
sources_full = [
]
if (LOSCFG_USER_TEST_
FOR_ALL == true
) {
unittest("liteos_a_pthread_unittest") {
if (LOSCFG_USER_TEST_
LEVEL >= TEST_LEVEL_LOW
) {
unittest("liteos_a_pthread_unittest
_door
") {
output_extension = "bin"
output_dir = "$root_out_dir/test/unittest/kernel"
include_dirs = common_include_dirs
sources = sources_entry
configs = [ "../..:public_config_full" ]
deps = []
deps += [ ":sources_smoke" ]
deps += [ ":sources_other" ]
sources += sources_smoke
sources_full = []
sources += sources_full
configs = [ "../..:public_config_for_door" ]
deps = [ "//third_party/bounds_checking_function:libsec_shared" ]
}
}
if (LOSCFG_USER_TEST_
FOR_DOOR == true
) {
unittest("liteos_a_pthread_unittest
_door
") {
if (LOSCFG_USER_TEST_
LEVEL >= TEST_LEVEL_MIDDLE
) {
unittest("liteos_a_pthread_unittest") {
output_extension = "bin"
output_dir = "$root_out_dir/test/unittest/kernel"
include_dirs = common_include_dirs
sources = sources_entry
configs = [ "../..:public_config_smk" ]
deps = []
deps += [ ":sources_smoke" ]
sources += sources_smoke
sources += sources_full
configs = [ "../..:public_config_for_all" ]
deps = [ "//third_party/bounds_checking_function:libsec_shared" ]
}
}
testsuites/unittest/process/rwlock/BUILD.gn
浏览文件 @
4d07d2e9
...
...
@@ -41,45 +41,37 @@ sources_entry = [
"process_rwlock_test.cpp",
]
source_set("sources_smoke") {
sources = [
sources_smoke = [
"smoke/pthread_rwlock_test_001.cpp",
"smoke/pthread_rwlock_test_002.cpp",
]
configs += [ "../..:local_public_config" ]
include_dirs = common_include_dirs
deps = [ "//third_party/bounds_checking_function:libsec_shared" ]
}
]
source_set("sources_other") {
sources = [
]
configs += [ "../..:local_public_config" ]
include_dirs = common_include_dirs
deps = [ "//third_party/bounds_checking_function:libsec_shared" ]
}
sources_full = [
]
if (LOSCFG_USER_TEST_
FOR_ALL == true
) {
unittest("liteos_a_rwlock_unittest") {
if (LOSCFG_USER_TEST_
LEVEL >= TEST_LEVEL_LOW
) {
unittest("liteos_a_rwlock_unittest
_door
") {
output_extension = "bin"
output_dir = "$root_out_dir/test/unittest/kernel"
include_dirs = common_include_dirs
sources = sources_entry
configs = [ "../..:public_config_full" ]
deps = []
deps += [ ":sources_smoke" ]
deps += [ ":sources_other" ]
sources += sources_smoke
sources_full = []
sources += sources_full
configs = [ "../..:public_config_for_door" ]
deps = [ "//third_party/bounds_checking_function:libsec_shared" ]
}
}
if (LOSCFG_USER_TEST_
FOR_DOOR == true
) {
unittest("liteos_a_rwlock_unittest
_door
") {
if (LOSCFG_USER_TEST_
LEVEL >= TEST_LEVEL_MIDDLE
) {
unittest("liteos_a_rwlock_unittest") {
output_extension = "bin"
output_dir = "$root_out_dir/test/unittest/kernel"
include_dirs = common_include_dirs
sources = sources_entry
configs = [ "../..:public_config_smk" ]
deps = []
deps += [ ":sources_smoke" ]
sources += sources_smoke
sources += sources_full
configs = [ "../..:public_config_for_all" ]
deps = [ "//third_party/bounds_checking_function:libsec_shared" ]
}
}
testsuites/unittest/process/spinlock/BUILD.gn
浏览文件 @
4d07d2e9
...
...
@@ -41,44 +41,36 @@ sources_entry = [
"process_spinlock_test.cpp",
]
source_set("sources_smoke") {
sources = [
sources_smoke = [
"smoke/pthread_spinlock_test_001.cpp",
]
configs += [ "../..:local_public_config" ]
include_dirs = common_include_dirs
deps = [ "//third_party/bounds_checking_function:libsec_shared" ]
}
]
source_set("sources_other") {
sources = [
]
configs += [ "../..:local_public_config" ]
include_dirs = common_include_dirs
deps = [ "//third_party/bounds_checking_function:libsec_shared" ]
}
sources_full = [
]
if (LOSCFG_USER_TEST_
FOR_ALL == true
) {
unittest("liteos_a_spinlock_unittest") {
if (LOSCFG_USER_TEST_
LEVEL >= TEST_LEVEL_LOW
) {
unittest("liteos_a_spinlock_unittest
_door
") {
output_extension = "bin"
output_dir = "$root_out_dir/test/unittest/kernel"
include_dirs = common_include_dirs
sources = sources_entry
configs = [ "../..:public_config_full" ]
deps = []
deps += [ ":sources_smoke" ]
deps += [ ":sources_other" ]
sources += sources_smoke
sources_full = []
sources += sources_full
configs = [ "../..:public_config_for_door" ]
deps = [ "//third_party/bounds_checking_function:libsec_shared" ]
}
}
if (LOSCFG_USER_TEST_
FOR_DOOR == true
) {
unittest("liteos_a_spinlock_unittest
_door
") {
if (LOSCFG_USER_TEST_
LEVEL >= TEST_LEVEL_MIDDLE
) {
unittest("liteos_a_spinlock_unittest") {
output_extension = "bin"
output_dir = "$root_out_dir/test/unittest/kernel"
include_dirs = common_include_dirs
sources = sources_entry
configs = [ "../..:public_config_smk" ]
deps = []
deps += [ ":sources_smoke" ]
sources += sources_smoke
sources += sources_full
configs = [ "../..:public_config_for_all" ]
deps = [ "//third_party/bounds_checking_function:libsec_shared" ]
}
}
testsuites/unittest/security/capability/BUILD.gn
浏览文件 @
4d07d2e9
...
...
@@ -13,44 +13,36 @@ sources_entry = [
"security_capability_test.cpp",
]
source_set("sources_smoke") {
sources = [
sources_smoke = [
"smoke/cap_test_001.cpp",
]
configs += [ "../..:local_public_config" ]
include_dirs = common_include_dirs
deps = [ "//third_party/bounds_checking_function:libsec_shared" ]
}
]
source_set("sources_other") {
sources = [
]
configs += [ "../..:local_public_config" ]
include_dirs = common_include_dirs
deps = [ "//third_party/bounds_checking_function:libsec_shared" ]
}
sources_full = [
]
if (LOSCFG_USER_TEST_
FOR_ALL == true
) {
unittest("liteos_a_security_capability_unittest") {
if (LOSCFG_USER_TEST_
LEVEL >= TEST_LEVEL_LOW
) {
unittest("liteos_a_security_capability_unittest
_door
") {
output_extension = "bin"
output_dir = "$root_out_dir/test/unittest/kernel"
include_dirs = common_include_dirs
sources = sources_entry
configs = [ "../..:public_config_full" ]
deps = []
deps += [ ":sources_smoke" ]
deps += [ ":sources_other" ]
sources += sources_smoke
sources_full = []
sources += sources_full
configs = [ "../..:public_config_for_door" ]
deps = [ "//third_party/bounds_checking_function:libsec_shared" ]
}
}
if (LOSCFG_USER_TEST_
FOR_DOOR == true
) {
unittest("liteos_a_security_capability_unittest
_door
") {
if (LOSCFG_USER_TEST_
LEVEL >= TEST_LEVEL_MIDDLE
) {
unittest("liteos_a_security_capability_unittest") {
output_extension = "bin"
output_dir = "$root_out_dir/test/unittest/kernel"
include_dirs = common_include_dirs
sources = sources_entry
configs = [ "../..:public_config_smk" ]
deps = []
deps += [ ":sources_smoke" ]
sources += sources_smoke
sources += sources_full
configs = [ "../..:public_config_for_all" ]
deps = [ "//third_party/bounds_checking_function:libsec_shared" ]
}
}
testsuites/unittest/security/reugid/BUILD.gn
浏览文件 @
4d07d2e9
...
...
@@ -41,44 +41,36 @@ sources_entry = [
"security_reugid_test.cpp",
]
source_set("sources_smoke") {
sources = [
sources_smoke = [
"smoke/reugid_test_001.cpp",
]
configs += [ "../..:local_public_config" ]
include_dirs = common_include_dirs
deps = [ "//third_party/bounds_checking_function:libsec_shared" ]
}
]
source_set("sources_other") {
sources = [
]
configs += [ "../..:local_public_config" ]
include_dirs = common_include_dirs
deps = [ "//third_party/bounds_checking_function:libsec_shared" ]
}
sources_full = [
]
if (LOSCFG_USER_TEST_
FOR_ALL == true
) {
unittest("liteos_a_security_reugid_unittest") {
if (LOSCFG_USER_TEST_
LEVEL >= TEST_LEVEL_LOW
) {
unittest("liteos_a_security_reugid_unittest
_door
") {
output_extension = "bin"
output_dir = "$root_out_dir/test/unittest/kernel"
include_dirs = common_include_dirs
sources = sources_entry
configs = [ "../..:public_config_full" ]
deps = []
deps += [ ":sources_smoke" ]
deps += [ ":sources_other" ]
sources += sources_smoke
sources_full = []
sources += sources_full
configs = [ "../..:public_config_for_door" ]
deps = [ "//third_party/bounds_checking_function:libsec_shared" ]
}
}
if (LOSCFG_USER_TEST_
FOR_DOOR == true
) {
unittest("liteos_a_security_reugid_unittest
_door
") {
if (LOSCFG_USER_TEST_
LEVEL >= TEST_LEVEL_MIDDLE
) {
unittest("liteos_a_security_reugid_unittest") {
output_extension = "bin"
output_dir = "$root_out_dir/test/unittest/kernel"
include_dirs = common_include_dirs
sources = sources_entry
configs = [ "../..:public_config_smk" ]
deps = []
deps += [ ":sources_smoke" ]
sources += sources_smoke
sources += sources_full
configs = [ "../..:public_config_for_all" ]
deps = [ "//third_party/bounds_checking_function:libsec_shared" ]
}
}
testsuites/unittest/security/vid/BUILD.gn
浏览文件 @
4d07d2e9
...
...
@@ -41,44 +41,36 @@ sources_entry = [
"security_vid_test.cpp",
]
source_set("sources_smoke") {
sources = [
sources_smoke = [
"smoke/vid_test_001.cpp",
]
configs += [ "../..:local_public_config" ]
include_dirs = common_include_dirs
deps = [ "//third_party/bounds_checking_function:libsec_shared" ]
}
]
source_set("sources_other") {
sources = [
]
configs += [ "../..:local_public_config" ]
include_dirs = common_include_dirs
deps = [ "//third_party/bounds_checking_function:libsec_shared" ]
}
sources_full = [
]
if (LOSCFG_USER_TEST_
FOR_ALL == true
) {
unittest("liteos_a_security_vid_unittest") {
if (LOSCFG_USER_TEST_
LEVEL >= TEST_LEVEL_LOW
) {
unittest("liteos_a_security_vid_unittest
_door
") {
output_extension = "bin"
output_dir = "$root_out_dir/test/unittest/kernel"
include_dirs = common_include_dirs
sources = sources_entry
configs = [ "../..:public_config_full" ]
deps = []
deps += [ ":sources_smoke" ]
deps += [ ":sources_other" ]
sources += sources_smoke
sources_full = []
sources += sources_full
configs = [ "../..:public_config_for_door" ]
deps = [ "//third_party/bounds_checking_function:libsec_shared" ]
}
}
if (LOSCFG_USER_TEST_
FOR_DOOR == true
) {
unittest("liteos_a_security_vid_unittest
_door
") {
if (LOSCFG_USER_TEST_
LEVEL >= TEST_LEVEL_MIDDLE
) {
unittest("liteos_a_security_vid_unittest") {
output_extension = "bin"
output_dir = "$root_out_dir/test/unittest/kernel"
include_dirs = common_include_dirs
sources = sources_entry
configs = [ "../..:public_config_smk" ]
deps = []
deps += [ ":sources_smoke" ]
sources += sources_smoke
sources += sources_full
configs = [ "../..:public_config_for_all" ]
deps = [ "//third_party/bounds_checking_function:libsec_shared" ]
}
}
testsuites/unittest/signal/BUILD.gn
浏览文件 @
4d07d2e9
...
...
@@ -41,8 +41,7 @@ sources_entry = [
"signal_test.cpp",
]
source_set("sources_smoke") {
sources = [
sources_smoke = [
"smoke/It_ipc_fdisset_001.cpp",
"smoke/It_ipc_mkfifo_002.cpp",
"smoke/It_ipc_mkfifo_003.cpp",
...
...
@@ -71,14 +70,9 @@ source_set("sources_smoke") {
"smoke/signal_test_042.cpp",
"smoke/sigset_test_001.cpp",
"smoke/sigset_test_002.cpp",
]
configs += [ "..:local_public_config" ]
include_dirs = common_include_dirs
deps = [ "//third_party/bounds_checking_function:libsec_shared" ]
}
]
source_set("sources_other") {
sources = [
sources_full = [
"full/It_ipc_fdclr_001.cpp",
"full/It_ipc_fdset_001.cpp",
"full/It_ipc_fdzero_001.cpp",
...
...
@@ -115,33 +109,31 @@ source_set("sources_other") {
"full/pipe_test_001.cpp",
"full/pipe_test_003.cpp",
]
configs += [ "..:local_public_config" ]
include_dirs = common_include_dirs
deps = [ "//third_party/bounds_checking_function:libsec_shared" ]
}
]
if (LOSCFG_USER_TEST_
FOR_ALL == true
) {
unittest("liteos_a_signal_unittest") {
if (LOSCFG_USER_TEST_
LEVEL >= TEST_LEVEL_LOW
) {
unittest("liteos_a_signal_unittest
_door
") {
output_extension = "bin"
output_dir = "$root_out_dir/test/unittest/kernel"
include_dirs = common_include_dirs
sources = sources_entry
configs = [ "..:public_config_full" ]
deps = []
deps += [ ":sources_smoke" ]
deps += [ ":sources_other" ]
sources += sources_smoke
sources_full = []
sources += sources_full
configs = [ "..:public_config_for_door" ]
deps = [ "//third_party/bounds_checking_function:libsec_shared" ]
}
}
if (LOSCFG_USER_TEST_
FOR_DOOR == true
) {
unittest("liteos_a_signal_unittest
_door
") {
if (LOSCFG_USER_TEST_
LEVEL >= TEST_LEVEL_MIDDLE
) {
unittest("liteos_a_signal_unittest") {
output_extension = "bin"
output_dir = "$root_out_dir/test/unittest/kernel"
include_dirs = common_include_dirs
sources = sources_entry
configs = [ "..:public_config_smk" ]
deps = []
deps += [ ":sources_smoke" ]
sources += sources_smoke
sources += sources_full
configs = [ "..:public_config_for_all" ]
deps = [ "//third_party/bounds_checking_function:libsec_shared" ]
}
}
testsuites/unittest/sys/BUILD.gn
浏览文件 @
4d07d2e9
...
...
@@ -41,8 +41,7 @@ sources_entry = [
"sys_unit_test.cpp",
]
source_set("sources_smoke") {
sources = [
sources_smoke = [
"smoke/sys_test_001.cpp",
"smoke/sys_test_004.cpp",
"smoke/sys_test_005.cpp",
...
...
@@ -71,41 +70,34 @@ source_set("sources_smoke") {
"smoke/sys_test_029.cpp",
"smoke/sys_test_030.cpp",
"smoke/sys_test_031.cpp",
]
configs += [ "..:local_public_config" ]
include_dirs = common_include_dirs
deps = [ "//third_party/bounds_checking_function:libsec_shared" ]
}
]
source_set("sources_other") {
sources = [
]
configs += [ "..:local_public_config" ]
include_dirs = common_include_dirs
deps = [ "//third_party/bounds_checking_function:libsec_shared" ]
}
sources_full = [
]
if (LOSCFG_USER_TEST_
FOR_ALL == true
) {
unittest("liteos_a_sys_unittest") {
if (LOSCFG_USER_TEST_
LEVEL >= TEST_LEVEL_LOW
) {
unittest("liteos_a_sys_unittest
_door
") {
output_extension = "bin"
output_dir = "$root_out_dir/test/unittest/kernel"
include_dirs = common_include_dirs
sources = sources_entry
configs = [ "..:public_config_full" ]
deps = []
deps += [ ":sources_smoke" ]
deps += [ ":sources_other" ]
sources += sources_smoke
sources_full = []
sources += sources_full
configs = [ "..:public_config_for_door" ]
deps = [ "//third_party/bounds_checking_function:libsec_shared" ]
}
}
if (LOSCFG_USER_TEST_
FOR_DOOR == true
) {
unittest("liteos_a_sys_unittest
_door
") {
if (LOSCFG_USER_TEST_
LEVEL >= TEST_LEVEL_MIDDLE
) {
unittest("liteos_a_sys_unittest") {
output_extension = "bin"
output_dir = "$root_out_dir/test/unittest/kernel"
include_dirs = common_include_dirs
sources = sources_entry
configs = [ "..:public_config_smk" ]
deps = []
deps += [ ":sources_smoke" ]
sources += sources_smoke
sources += sources_full
configs = [ "..:public_config_for_all" ]
deps = [ "//third_party/bounds_checking_function:libsec_shared" ]
}
}
testsuites/unittest/time/clock/BUILD.gn
浏览文件 @
4d07d2e9
...
...
@@ -41,8 +41,7 @@ sources_entry = [
"time_clock_test.cpp",
]
source_set("sources_smoke") {
sources = [
sources_smoke = [
"smoke/clock_test_001.cpp",
"smoke/clock_test_002.cpp",
"smoke/clock_test_003.cpp",
...
...
@@ -53,42 +52,35 @@ source_set("sources_smoke") {
"smoke/clock_test_009.cpp",
"smoke/clock_test_011.cpp",
"smoke/clock_test_012.cpp",
]
configs += [ "../..:local_public_config" ]
include_dirs = common_include_dirs
deps = [ "//third_party/bounds_checking_function:libsec_shared" ]
}
]
source_set("sources_other") {
sources = [
sources_full = [
"full/clock_test_010.cpp",
]
configs += [ "../..:local_public_config" ]
include_dirs = common_include_dirs
deps = [ "//third_party/bounds_checking_function:libsec_shared" ]
}
]
if (LOSCFG_USER_TEST_
FOR_ALL == true
) {
unittest("liteos_a_time_clock_unittest") {
if (LOSCFG_USER_TEST_
LEVEL >= TEST_LEVEL_LOW
) {
unittest("liteos_a_time_clock_unittest
_door
") {
output_extension = "bin"
output_dir = "$root_out_dir/test/unittest/kernel"
include_dirs = common_include_dirs
sources = sources_entry
configs = [ "../..:public_config_full" ]
deps = []
deps += [ ":sources_smoke" ]
deps += [ ":sources_other" ]
sources += sources_smoke
sources_full = []
sources += sources_full
configs = [ "../..:public_config_for_door" ]
deps = [ "//third_party/bounds_checking_function:libsec_shared" ]
}
}
if (LOSCFG_USER_TEST_
FOR_DOOR == true
) {
unittest("liteos_a_time_clock_unittest
_door
") {
if (LOSCFG_USER_TEST_
LEVEL >= TEST_LEVEL_MIDDLE
) {
unittest("liteos_a_time_clock_unittest") {
output_extension = "bin"
output_dir = "$root_out_dir/test/unittest/kernel"
include_dirs = common_include_dirs
sources = sources_entry
configs = [ "../..:public_config_smk" ]
deps = []
deps += [ ":sources_smoke" ]
sources += sources_smoke
sources += sources_full
configs = [ "../..:public_config_for_all" ]
deps = [ "//third_party/bounds_checking_function:libsec_shared" ]
}
}
testsuites/unittest/time/timer/BUILD.gn
浏览文件 @
4d07d2e9
...
...
@@ -41,49 +41,41 @@ sources_entry = [
"time_timer_test.cpp",
]
source_set("sources_smoke") {
sources = [
sources_smoke = [
"smoke/timer_test_001.cpp",
"smoke/timer_test_002.cpp",
"smoke/timer_test_003.cpp",
"smoke/timer_test_004.cpp",
"smoke/timer_test_tzset_001.cpp",
"smoke/timer_test_tzset_002.cpp",
]
configs += [ "../..:local_public_config" ]
include_dirs = common_include_dirs
deps = [ "//third_party/bounds_checking_function:libsec_shared" ]
}
]
source_set("sources_other") {
sources = [
]
configs += [ "../..:local_public_config" ]
include_dirs = common_include_dirs
deps = [ "//third_party/bounds_checking_function:libsec_shared" ]
}
sources_full = [
]
if (LOSCFG_USER_TEST_
FOR_ALL == true
) {
unittest("liteos_a_time_timer_unittest") {
if (LOSCFG_USER_TEST_
LEVEL >= TEST_LEVEL_LOW
) {
unittest("liteos_a_time_timer_unittest
_door
") {
output_extension = "bin"
output_dir = "$root_out_dir/test/unittest/kernel"
include_dirs = common_include_dirs
sources = sources_entry
configs = [ "../..:public_config_full" ]
deps = []
deps += [ ":sources_smoke" ]
deps += [ ":sources_other" ]
sources += sources_smoke
sources_full = []
sources += sources_full
configs = [ "../..:public_config_for_door" ]
deps = [ "//third_party/bounds_checking_function:libsec_shared" ]
}
}
if (LOSCFG_USER_TEST_
FOR_DOOR == true
) {
unittest("liteos_a_time_timer_unittest
_door
") {
if (LOSCFG_USER_TEST_
LEVEL >= TEST_LEVEL_MIDDLE
) {
unittest("liteos_a_time_timer_unittest") {
output_extension = "bin"
output_dir = "$root_out_dir/test/unittest/kernel"
include_dirs = common_include_dirs
sources = sources_entry
configs = [ "../..:public_config_smk" ]
deps = []
deps += [ ":sources_smoke" ]
sources += sources_smoke
sources += sources_full
configs = [ "../..:public_config_for_all" ]
deps = [ "//third_party/bounds_checking_function:libsec_shared" ]
}
}
testsuites/unittest/util/BUILD.gn
浏览文件 @
4d07d2e9
...
...
@@ -43,8 +43,7 @@ sources_entry = [
"util_test.cpp",
]
source_set("sources_smoke") {
sources = [
sources_smoke = [
"smoke/it_test_util_100.cpp",
"smoke/it_test_util_101.cpp",
"smoke/util_test_001.cpp",
...
...
@@ -54,41 +53,34 @@ source_set("sources_smoke") {
"smoke/util_test_005.cpp",
"smoke/util_test_006.cpp",
"smoke/util_test_007.cpp",
]
configs += [ "..:local_public_config" ]
include_dirs = common_include_dirs
deps = [ "//third_party/bounds_checking_function:libsec_shared" ]
}
]
source_set("sources_other") {
sources = [
]
configs += [ "..:local_public_config" ]
include_dirs = common_include_dirs
deps = [ "//third_party/bounds_checking_function:libsec_shared" ]
}
sources_full = [
]
if (LOSCFG_USER_TEST_
FOR_ALL == true
) {
unittest("liteos_a_util_unittest") {
if (LOSCFG_USER_TEST_
LEVEL >= TEST_LEVEL_LOW
) {
unittest("liteos_a_util_unittest
_door
") {
output_extension = "bin"
output_dir = "$root_out_dir/test/unittest/kernel"
include_dirs = common_include_dirs
sources = sources_entry
configs = [ "..:public_config_full" ]
deps = []
deps += [ ":sources_smoke" ]
deps += [ ":sources_other" ]
sources += sources_smoke
sources_full = []
sources += sources_full
configs = [ "..:public_config_for_door" ]
deps = [ "//third_party/bounds_checking_function:libsec_shared" ]
}
}
if (LOSCFG_USER_TEST_
FOR_DOOR == true
) {
unittest("liteos_a_util_unittest
_door
") {
if (LOSCFG_USER_TEST_
LEVEL >= TEST_LEVEL_MIDDLE
) {
unittest("liteos_a_util_unittest") {
output_extension = "bin"
output_dir = "$root_out_dir/test/unittest/kernel"
include_dirs = common_include_dirs
sources = sources_entry
configs = [ "..:public_config_smk" ]
deps = []
deps += [ ":sources_smoke" ]
sources += sources_smoke
sources += sources_full
configs = [ "..:public_config_for_all" ]
deps = [ "//third_party/bounds_checking_function:libsec_shared" ]
}
}
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录