Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Kernel Liteos A
提交
471e47c1
K
Kernel Liteos A
项目概览
OpenHarmony
/
Kernel Liteos A
1 年多 前同步成功
通知
461
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看板
提交
471e47c1
编写于
5月 17, 2021
作者:
O
openharmony_ci
提交者:
Gitee
5月 17, 2021
浏览文件
操作
浏览文件
下载
差异文件
!244 用例框架完善
Merge pull request !244 from lnlan/test_fixed
上级
854a0c53
fbe98af9
变更
34
隐藏空白更改
内联
并排
Showing
34 changed file
with
86 addition
and
4 deletion
+86
-4
testsuites/unittest/BUILD.gn
testsuites/unittest/BUILD.gn
+16
-3
testsuites/unittest/IO/BUILD.gn
testsuites/unittest/IO/BUILD.gn
+2
-0
testsuites/unittest/IPC/BUILD.gn
testsuites/unittest/IPC/BUILD.gn
+2
-0
testsuites/unittest/config.gni
testsuites/unittest/config.gni
+6
-1
testsuites/unittest/drivers/hid/BUILD.gn
testsuites/unittest/drivers/hid/BUILD.gn
+2
-0
testsuites/unittest/drivers/storage/BUILD.gn
testsuites/unittest/drivers/storage/BUILD.gn
+2
-0
testsuites/unittest/dynload/BUILD.gn
testsuites/unittest/dynload/BUILD.gn
+2
-0
testsuites/unittest/exc/BUILD.gn
testsuites/unittest/exc/BUILD.gn
+2
-0
testsuites/unittest/fs/BUILD.gn
testsuites/unittest/fs/BUILD.gn
+2
-0
testsuites/unittest/fs/proc/BUILD.gn
testsuites/unittest/fs/proc/BUILD.gn
+2
-0
testsuites/unittest/fs/vfat2/BUILD.gn
testsuites/unittest/fs/vfat2/BUILD.gn
+2
-0
testsuites/unittest/liteipc/BUILD.gn
testsuites/unittest/liteipc/BUILD.gn
+2
-0
testsuites/unittest/mem/shm/BUILD.gn
testsuites/unittest/mem/shm/BUILD.gn
+2
-0
testsuites/unittest/mem/vm/BUILD.gn
testsuites/unittest/mem/vm/BUILD.gn
+2
-0
testsuites/unittest/misc/BUILD.gn
testsuites/unittest/misc/BUILD.gn
+2
-0
testsuites/unittest/net/netdb/BUILD.gn
testsuites/unittest/net/netdb/BUILD.gn
+2
-0
testsuites/unittest/net/resolv/BUILD.gn
testsuites/unittest/net/resolv/BUILD.gn
+2
-0
testsuites/unittest/net/socket/BUILD.gn
testsuites/unittest/net/socket/BUILD.gn
+2
-0
testsuites/unittest/posix/mem/BUILD.gn
testsuites/unittest/posix/mem/BUILD.gn
+2
-0
testsuites/unittest/posix/mqueue/BUILD.gn
testsuites/unittest/posix/mqueue/BUILD.gn
+2
-0
testsuites/unittest/posix/pthread/BUILD.gn
testsuites/unittest/posix/pthread/BUILD.gn
+2
-0
testsuites/unittest/process/mutex/BUILD.gn
testsuites/unittest/process/mutex/BUILD.gn
+2
-0
testsuites/unittest/process/process/BUILD.gn
testsuites/unittest/process/process/BUILD.gn
+2
-0
testsuites/unittest/process/pthread/BUILD.gn
testsuites/unittest/process/pthread/BUILD.gn
+2
-0
testsuites/unittest/process/rwlock/BUILD.gn
testsuites/unittest/process/rwlock/BUILD.gn
+2
-0
testsuites/unittest/process/spinlock/BUILD.gn
testsuites/unittest/process/spinlock/BUILD.gn
+2
-0
testsuites/unittest/security/capability/BUILD.gn
testsuites/unittest/security/capability/BUILD.gn
+2
-0
testsuites/unittest/security/reugid/BUILD.gn
testsuites/unittest/security/reugid/BUILD.gn
+2
-0
testsuites/unittest/security/vid/BUILD.gn
testsuites/unittest/security/vid/BUILD.gn
+2
-0
testsuites/unittest/signal/BUILD.gn
testsuites/unittest/signal/BUILD.gn
+2
-0
testsuites/unittest/sys/BUILD.gn
testsuites/unittest/sys/BUILD.gn
+2
-0
testsuites/unittest/time/clock/BUILD.gn
testsuites/unittest/time/clock/BUILD.gn
+2
-0
testsuites/unittest/time/timer/BUILD.gn
testsuites/unittest/time/timer/BUILD.gn
+2
-0
testsuites/unittest/util/BUILD.gn
testsuites/unittest/util/BUILD.gn
+2
-0
未找到文件。
testsuites/unittest/BUILD.gn
浏览文件 @
471e47c1
...
...
@@ -29,17 +29,28 @@
import("config.gni")
local_flags = []
local_flags_smoke = []
local_flags_full = []
if (board_name == "hispark_taurus") {
local_flags_smoke += [ "-DLOSCFG_USER_TEST_SMP" ]
local_flags_full += [ "-DLOSCFG_USER_TEST_SMP" ]
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 += [
"-O2",
"-fbuiltin",
"-Wno-narrowing",
]
cflags += local_flags
cflags_cc = cflags
}
config("public_config_smk") {
cflags = [ "-fpermissive" ]
cflags += [
...
...
@@ -48,6 +59,7 @@ config("public_config_smk") {
"-Wno-narrowing",
]
cflags += local_flags_smoke
cflags += local_flags
cflags_cc = cflags
}
...
...
@@ -59,6 +71,7 @@ config("public_config_full") {
"-Wno-narrowing",
]
cflags += local_flags_full
cflags += local_flags
cflags_cc = cflags
}
...
...
testsuites/unittest/IO/BUILD.gn
浏览文件 @
471e47c1
...
...
@@ -48,6 +48,7 @@ source_set("sources_smoke") {
"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" ]
}
...
...
@@ -89,6 +90,7 @@ source_set("sources_other") {
"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" ]
}
...
...
testsuites/unittest/IPC/BUILD.gn
浏览文件 @
471e47c1
...
...
@@ -44,6 +44,7 @@ sources_entry = [
source_set("sources_smoke") {
sources = [
]
configs += [ "..:local_public_config" ]
include_dirs = common_include_dirs
deps = [ "//third_party/bounds_checking_function:libsec_shared" ]
}
...
...
@@ -53,6 +54,7 @@ source_set("sources_other") {
"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" ]
}
...
...
testsuites/unittest/config.gni
浏览文件 @
471e47c1
...
...
@@ -28,9 +28,14 @@
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
LOSCFG_USER_TEST_FOR_DOOR = true
LOSCFG_USER_TEST_FOR_ALL =
tru
e
LOSCFG_USER_TEST_FOR_ALL =
fals
e
LOSCFG_USER_TEST_PRESSURE = false
# "default": depend on board_name
# "enable": those testsuites testing for SMP is enable
# "disable" those testsuites is disable
LOSCFG_USER_TEST_SMP = "default"
LOSCFG_USER_TEST_MISC = true
LOSCFG_USER_TEST_DRIVERS_HID = true
LOSCFG_USER_TEST_DRIVERS_STORAGE = true
...
...
testsuites/unittest/drivers/hid/BUILD.gn
浏览文件 @
471e47c1
...
...
@@ -45,6 +45,7 @@ source_set("sources_smoke") {
sources = [
"smoke/hid_test_001.cpp",
]
configs += [ "../..:local_public_config" ]
include_dirs = common_include_dirs
deps = [ "//third_party/bounds_checking_function:libsec_shared" ]
}
...
...
@@ -52,6 +53,7 @@ source_set("sources_smoke") {
source_set("sources_other") {
sources = [
]
configs += [ "../..:local_public_config" ]
include_dirs = common_include_dirs
deps = [ "//third_party/bounds_checking_function:libsec_shared" ]
}
...
...
testsuites/unittest/drivers/storage/BUILD.gn
浏览文件 @
471e47c1
...
...
@@ -45,6 +45,7 @@ source_set("sources_smoke") {
sources = [
"smoke/storage_test_001.cpp",
]
configs += [ "../..:local_public_config" ]
include_dirs = common_include_dirs
deps = [ "//third_party/bounds_checking_function:libsec_shared" ]
}
...
...
@@ -52,6 +53,7 @@ source_set("sources_smoke") {
source_set("sources_other") {
sources = [
]
configs += [ "../..:local_public_config" ]
include_dirs = common_include_dirs
deps = [ "//third_party/bounds_checking_function:libsec_shared" ]
}
...
...
testsuites/unittest/dynload/BUILD.gn
浏览文件 @
471e47c1
...
...
@@ -46,6 +46,7 @@ source_set("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" ]
}
...
...
@@ -53,6 +54,7 @@ source_set("sources_smoke") {
source_set("sources_other") {
sources = [
]
configs += [ "..:local_public_config" ]
include_dirs = common_include_dirs
deps = [ "//third_party/bounds_checking_function:libsec_shared" ]
}
...
...
testsuites/unittest/exc/BUILD.gn
浏览文件 @
471e47c1
...
...
@@ -49,6 +49,7 @@ source_set("sources_smoke") {
"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" ]
}
...
...
@@ -57,6 +58,7 @@ source_set("sources_other") {
sources = [
"full/it_test_fexecve_001.cpp",
]
configs += [ "..:local_public_config" ]
include_dirs = common_include_dirs
deps = [ "//third_party/bounds_checking_function:libsec_shared" ]
}
...
...
testsuites/unittest/fs/BUILD.gn
浏览文件 @
471e47c1
...
...
@@ -60,6 +60,7 @@ source_set("sources_smoke") {
"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" ]
}
...
...
@@ -791,6 +792,7 @@ source_set("sources_other") {
"jffs/full/It_vfs_jffs_807.cpp",
"jffs/full/It_vfs_jffs_808.cpp",
]
configs += [ "..:local_public_config" ]
include_dirs = common_include_dirs
deps = [ "//third_party/bounds_checking_function:libsec_shared" ]
}
...
...
testsuites/unittest/fs/proc/BUILD.gn
浏览文件 @
471e47c1
...
...
@@ -44,6 +44,7 @@ sources_entry = [
source_set("sources_smoke") {
sources = [
]
configs += [ "../..:local_public_config" ]
include_dirs = common_include_dirs
deps = [ "//third_party/bounds_checking_function:libsec_shared" ]
}
...
...
@@ -57,6 +58,7 @@ source_set("sources_other") {
"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" ]
}
...
...
testsuites/unittest/fs/vfat2/BUILD.gn
浏览文件 @
471e47c1
...
...
@@ -46,6 +46,7 @@ source_set("sources_smoke") {
sources = [
"smoke/It_vfs_fat_026.cpp",
]
configs += [ "../..:local_public_config" ]
include_dirs = common_include_dirs
deps = [ "//third_party/bounds_checking_function:libsec_shared" ]
}
...
...
@@ -193,6 +194,7 @@ source_set("sources_other") {
"full/It_vfs_fat_904.cpp",
"full/It_vfs_fat_909.cpp",
]
configs += [ "../..:local_public_config" ]
include_dirs = common_include_dirs
deps = [ "//third_party/bounds_checking_function:libsec_shared" ]
}
...
...
testsuites/unittest/liteipc/BUILD.gn
浏览文件 @
471e47c1
...
...
@@ -47,6 +47,7 @@ source_set("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" ]
}
...
...
@@ -54,6 +55,7 @@ source_set("sources_smoke") {
source_set("sources_other") {
sources = [
]
configs += [ "..:local_public_config" ]
include_dirs = common_include_dirs
deps = [ "//third_party/bounds_checking_function:libsec_shared" ]
}
...
...
testsuites/unittest/mem/shm/BUILD.gn
浏览文件 @
471e47c1
...
...
@@ -58,6 +58,7 @@ source_set("sources_smoke") {
"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" ]
}
...
...
@@ -65,6 +66,7 @@ source_set("sources_smoke") {
source_set("sources_other") {
sources = [
]
configs += [ "../..:local_public_config" ]
include_dirs = common_include_dirs
deps = [ "//third_party/bounds_checking_function:libsec_shared" ]
}
...
...
testsuites/unittest/mem/vm/BUILD.gn
浏览文件 @
471e47c1
...
...
@@ -59,6 +59,7 @@ source_set("sources_smoke") {
"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" ]
}
...
...
@@ -66,6 +67,7 @@ source_set("sources_smoke") {
source_set("sources_other") {
sources = [
]
configs += [ "../..:local_public_config" ]
include_dirs = common_include_dirs
deps = [ "//third_party/bounds_checking_function:libsec_shared" ]
}
...
...
testsuites/unittest/misc/BUILD.gn
浏览文件 @
471e47c1
...
...
@@ -50,6 +50,7 @@ source_set("sources_other") {
"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" ]
}
...
...
@@ -65,6 +66,7 @@ source_set("sources_smoke") {
"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" ]
}
...
...
testsuites/unittest/net/netdb/BUILD.gn
浏览文件 @
471e47c1
...
...
@@ -53,6 +53,7 @@ source_set("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" ]
}
...
...
@@ -80,6 +81,7 @@ source_set("sources_other") {
"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" ]
}
...
...
testsuites/unittest/net/resolv/BUILD.gn
浏览文件 @
471e47c1
...
...
@@ -56,6 +56,7 @@ source_set("sources_smoke") {
"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" ]
}
...
...
@@ -66,6 +67,7 @@ source_set("sources_other") {
"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" ]
}
...
...
testsuites/unittest/net/socket/BUILD.gn
浏览文件 @
471e47c1
...
...
@@ -64,6 +64,7 @@ source_set("sources_smoke") {
"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" ]
}
...
...
@@ -71,6 +72,7 @@ source_set("sources_smoke") {
source_set("sources_other") {
sources = [
]
configs += [ "../..:local_public_config" ]
include_dirs = common_include_dirs
deps = [ "//third_party/bounds_checking_function:libsec_shared" ]
}
...
...
testsuites/unittest/posix/mem/BUILD.gn
浏览文件 @
471e47c1
...
...
@@ -46,6 +46,7 @@ source_set("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" ]
}
...
...
@@ -53,6 +54,7 @@ source_set("sources_smoke") {
source_set("sources_other") {
sources = [
]
configs += [ "../..:local_public_config" ]
include_dirs = common_include_dirs
deps = [ "//third_party/bounds_checking_function:libsec_shared" ]
}
...
...
testsuites/unittest/posix/mqueue/BUILD.gn
浏览文件 @
471e47c1
...
...
@@ -60,6 +60,7 @@ source_set("sources_smoke") {
"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" ]
}
...
...
@@ -206,6 +207,7 @@ source_set("sources_other") {
"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" ]
}
...
...
testsuites/unittest/posix/pthread/BUILD.gn
浏览文件 @
471e47c1
...
...
@@ -59,6 +59,7 @@ source_set("sources_smoke") {
"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" ]
}
...
...
@@ -171,6 +172,7 @@ source_set("sources_other") {
"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" ]
}
...
...
testsuites/unittest/process/mutex/BUILD.gn
浏览文件 @
471e47c1
...
...
@@ -69,6 +69,7 @@ source_set("sources_smoke") {
"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" ]
}
...
...
@@ -76,6 +77,7 @@ source_set("sources_smoke") {
source_set("sources_other") {
sources = [
]
configs += [ "../..:local_public_config" ]
include_dirs = common_include_dirs
deps = [ "//third_party/bounds_checking_function:libsec_shared" ]
}
...
...
testsuites/unittest/process/process/BUILD.gn
浏览文件 @
471e47c1
...
...
@@ -118,6 +118,7 @@ source_set("sources_smoke") {
"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" ]
}
...
...
@@ -125,6 +126,7 @@ source_set("sources_smoke") {
source_set("sources_other") {
sources = [
]
configs += [ "../..:local_public_config" ]
include_dirs = common_include_dirs
deps = [ "//third_party/bounds_checking_function:libsec_shared" ]
}
...
...
testsuites/unittest/process/pthread/BUILD.gn
浏览文件 @
471e47c1
...
...
@@ -68,6 +68,7 @@ source_set("sources_smoke") {
"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" ]
}
...
...
@@ -75,6 +76,7 @@ source_set("sources_smoke") {
source_set("sources_other") {
sources = [
]
configs += [ "../..:local_public_config" ]
include_dirs = common_include_dirs
deps = [ "//third_party/bounds_checking_function:libsec_shared" ]
}
...
...
testsuites/unittest/process/rwlock/BUILD.gn
浏览文件 @
471e47c1
...
...
@@ -46,6 +46,7 @@ source_set("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" ]
}
...
...
@@ -53,6 +54,7 @@ source_set("sources_smoke") {
source_set("sources_other") {
sources = [
]
configs += [ "../..:local_public_config" ]
include_dirs = common_include_dirs
deps = [ "//third_party/bounds_checking_function:libsec_shared" ]
}
...
...
testsuites/unittest/process/spinlock/BUILD.gn
浏览文件 @
471e47c1
...
...
@@ -45,6 +45,7 @@ source_set("sources_smoke") {
sources = [
"smoke/pthread_spinlock_test_001.cpp",
]
configs += [ "../..:local_public_config" ]
include_dirs = common_include_dirs
deps = [ "//third_party/bounds_checking_function:libsec_shared" ]
}
...
...
@@ -52,6 +53,7 @@ source_set("sources_smoke") {
source_set("sources_other") {
sources = [
]
configs += [ "../..:local_public_config" ]
include_dirs = common_include_dirs
deps = [ "//third_party/bounds_checking_function:libsec_shared" ]
}
...
...
testsuites/unittest/security/capability/BUILD.gn
浏览文件 @
471e47c1
...
...
@@ -17,6 +17,7 @@ source_set("sources_smoke") {
sources = [
"smoke/cap_test_001.cpp",
]
configs += [ "../..:local_public_config" ]
include_dirs = common_include_dirs
deps = [ "//third_party/bounds_checking_function:libsec_shared" ]
}
...
...
@@ -24,6 +25,7 @@ source_set("sources_smoke") {
source_set("sources_other") {
sources = [
]
configs += [ "../..:local_public_config" ]
include_dirs = common_include_dirs
deps = [ "//third_party/bounds_checking_function:libsec_shared" ]
}
...
...
testsuites/unittest/security/reugid/BUILD.gn
浏览文件 @
471e47c1
...
...
@@ -45,6 +45,7 @@ source_set("sources_smoke") {
sources = [
"smoke/reugid_test_001.cpp",
]
configs += [ "../..:local_public_config" ]
include_dirs = common_include_dirs
deps = [ "//third_party/bounds_checking_function:libsec_shared" ]
}
...
...
@@ -52,6 +53,7 @@ source_set("sources_smoke") {
source_set("sources_other") {
sources = [
]
configs += [ "../..:local_public_config" ]
include_dirs = common_include_dirs
deps = [ "//third_party/bounds_checking_function:libsec_shared" ]
}
...
...
testsuites/unittest/security/vid/BUILD.gn
浏览文件 @
471e47c1
...
...
@@ -45,6 +45,7 @@ source_set("sources_smoke") {
sources = [
"smoke/vid_test_001.cpp",
]
configs += [ "../..:local_public_config" ]
include_dirs = common_include_dirs
deps = [ "//third_party/bounds_checking_function:libsec_shared" ]
}
...
...
@@ -52,6 +53,7 @@ source_set("sources_smoke") {
source_set("sources_other") {
sources = [
]
configs += [ "../..:local_public_config" ]
include_dirs = common_include_dirs
deps = [ "//third_party/bounds_checking_function:libsec_shared" ]
}
...
...
testsuites/unittest/signal/BUILD.gn
浏览文件 @
471e47c1
...
...
@@ -107,6 +107,7 @@ source_set("sources_smoke") {
"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" ]
}
...
...
@@ -114,6 +115,7 @@ source_set("sources_smoke") {
source_set("sources_other") {
sources = [
]
configs += [ "..:local_public_config" ]
include_dirs = common_include_dirs
deps = [ "//third_party/bounds_checking_function:libsec_shared" ]
}
...
...
testsuites/unittest/sys/BUILD.gn
浏览文件 @
471e47c1
...
...
@@ -72,6 +72,7 @@ source_set("sources_smoke") {
"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" ]
}
...
...
@@ -79,6 +80,7 @@ source_set("sources_smoke") {
source_set("sources_other") {
sources = [
]
configs += [ "..:local_public_config" ]
include_dirs = common_include_dirs
deps = [ "//third_party/bounds_checking_function:libsec_shared" ]
}
...
...
testsuites/unittest/time/clock/BUILD.gn
浏览文件 @
471e47c1
...
...
@@ -54,6 +54,7 @@ source_set("sources_smoke") {
"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" ]
}
...
...
@@ -62,6 +63,7 @@ source_set("sources_other") {
sources = [
"full/clock_test_010.cpp",
]
configs += [ "../..:local_public_config" ]
include_dirs = common_include_dirs
deps = [ "//third_party/bounds_checking_function:libsec_shared" ]
}
...
...
testsuites/unittest/time/timer/BUILD.gn
浏览文件 @
471e47c1
...
...
@@ -50,6 +50,7 @@ source_set("sources_smoke") {
"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" ]
}
...
...
@@ -57,6 +58,7 @@ source_set("sources_smoke") {
source_set("sources_other") {
sources = [
]
configs += [ "../..:local_public_config" ]
include_dirs = common_include_dirs
deps = [ "//third_party/bounds_checking_function:libsec_shared" ]
}
...
...
testsuites/unittest/util/BUILD.gn
浏览文件 @
471e47c1
...
...
@@ -55,6 +55,7 @@ source_set("sources_smoke") {
"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" ]
}
...
...
@@ -62,6 +63,7 @@ source_set("sources_smoke") {
source_set("sources_other") {
sources = [
]
configs += [ "..:local_public_config" ]
include_dirs = common_include_dirs
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.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录