mirror of
https://github.com/openharmony/device_manager.git
synced 2026-07-19 18:13:32 -04:00
+13
-1
@@ -15,7 +15,19 @@ group("fuzztest") {
|
||||
testonly = true
|
||||
|
||||
deps = [
|
||||
"devicemanagerimpl_fuzzer:fuzztest",
|
||||
"authenticatedevice_fuzzer:fuzztest",
|
||||
"devicediscovery_fuzzer:fuzztest",
|
||||
"devicelist_fuzzer:fuzztest",
|
||||
"devicemanagernotify_fuzzer:fuzztest",
|
||||
"getfaparam_fuzzer:fuzztest",
|
||||
"getudidbynetworkid_fuzzer:fuzztest",
|
||||
"getuuidbynetworkid_fuzzer:fuzztest",
|
||||
"initdevicemanager_fuzzer:fuzztest",
|
||||
"registerdevicemanagerfacallback_fuzzer:fuzztest",
|
||||
"registerdevstatecallback_fuzzer:fuzztest",
|
||||
"setuseroperation_fuzzer:fuzztest",
|
||||
"unauthenticatedevice_fuzzer:fuzztest",
|
||||
"unregisterdevicemanagerfacallback_fuzzer:fuzztest",
|
||||
"devicemanagernotify_fuzzer:fuzztest",
|
||||
"devicemanagerservice_fuzzer:fuzztest",
|
||||
"ipcclientmanager_fuzzer:fuzztest",
|
||||
|
||||
@@ -17,7 +17,7 @@ import("//build/test.gni")
|
||||
import("//foundation/distributedhardware/device_manager/device_manager.gni")
|
||||
|
||||
##############################fuzztest##########################################
|
||||
ohos_fuzztest("DeviceManagerImplFuzzTest") {
|
||||
ohos_fuzztest("AuthenticateDeviceFuzzTest") {
|
||||
module_out_path = "device_manager/devicemanager"
|
||||
fuzz_config_file = "//foundation/distributedhardware/device_manager/test/fuzztest/authenticatedevice_fuzzer"
|
||||
|
||||
@@ -85,7 +85,7 @@ ohos_fuzztest("DeviceManagerImplFuzzTest") {
|
||||
"-Wno-unused-variable",
|
||||
"-fno-omit-frame-pointer",
|
||||
]
|
||||
sources = [ "device_manager_impl_fuzzer.cpp" ]
|
||||
sources = [ "authenticate_device_fuzzer.cpp" ]
|
||||
|
||||
deps = [
|
||||
"${utils_path}:devicemanagerutils",
|
||||
@@ -96,7 +96,7 @@ ohos_fuzztest("DeviceManagerImplFuzzTest") {
|
||||
|
||||
defines = [
|
||||
"HI_LOG_ENABLE",
|
||||
"DH_LOG_TAG=\"DeviceManagerImplFuzzTest\"",
|
||||
"DH_LOG_TAG=\"AuthenticateDeviceFuzzTest\"",
|
||||
"LOG_DOMAIN=0xD004100",
|
||||
]
|
||||
|
||||
@@ -118,6 +118,6 @@ ohos_fuzztest("DeviceManagerImplFuzzTest") {
|
||||
group("fuzztest") {
|
||||
testonly = true
|
||||
|
||||
deps = [ ":DeviceManagerImplFuzzTest" ]
|
||||
deps = [ ":AuthenticateDeviceFuzzTest" ]
|
||||
}
|
||||
###############################################################################
|
||||
|
||||
@@ -17,7 +17,7 @@ import("//build/test.gni")
|
||||
import("//foundation/distributedhardware/device_manager/device_manager.gni")
|
||||
|
||||
##############################fuzztest##########################################
|
||||
ohos_fuzztest("DeviceManagerImplFuzzTest") {
|
||||
ohos_fuzztest("DeviceDiscoveryFuzzTest") {
|
||||
module_out_path = "device_manager/devicemanager"
|
||||
fuzz_config_file = "//foundation/distributedhardware/device_manager/test/fuzztest/devicediscovery_fuzzer"
|
||||
|
||||
@@ -85,7 +85,7 @@ ohos_fuzztest("DeviceManagerImplFuzzTest") {
|
||||
"-Wno-unused-variable",
|
||||
"-fno-omit-frame-pointer",
|
||||
]
|
||||
sources = [ "device_manager_impl_fuzzer.cpp" ]
|
||||
sources = [ "device_discovery_fuzzer.cpp" ]
|
||||
|
||||
deps = [
|
||||
"${utils_path}:devicemanagerutils",
|
||||
@@ -96,7 +96,7 @@ ohos_fuzztest("DeviceManagerImplFuzzTest") {
|
||||
|
||||
defines = [
|
||||
"HI_LOG_ENABLE",
|
||||
"DH_LOG_TAG=\"DeviceManagerImplFuzzTest\"",
|
||||
"DH_LOG_TAG=\"DeviceDiscoveryFuzzTest\"",
|
||||
"LOG_DOMAIN=0xD004100",
|
||||
]
|
||||
|
||||
@@ -118,6 +118,6 @@ ohos_fuzztest("DeviceManagerImplFuzzTest") {
|
||||
group("fuzztest") {
|
||||
testonly = true
|
||||
|
||||
deps = [ ":DeviceManagerImplFuzzTest" ]
|
||||
deps = [ ":DeviceDiscoveryFuzzTest" ]
|
||||
}
|
||||
###############################################################################
|
||||
|
||||
@@ -17,9 +17,9 @@ import("//build/test.gni")
|
||||
import("//foundation/distributedhardware/device_manager/device_manager.gni")
|
||||
|
||||
##############################fuzztest##########################################
|
||||
ohos_fuzztest("DeviceManagerImplFuzzTest") {
|
||||
ohos_fuzztest("DeviceListFuzzTest") {
|
||||
module_out_path = "device_manager/devicemanager"
|
||||
fuzz_config_file = "//foundation/distributedhardware/device_manager/test/fuzztest/devicelistfuzztest"
|
||||
fuzz_config_file = "//foundation/distributedhardware/device_manager/test/fuzztest/devicelist_fuzzer"
|
||||
|
||||
include_dirs = [
|
||||
"${utils_path}/include",
|
||||
@@ -85,7 +85,7 @@ ohos_fuzztest("DeviceManagerImplFuzzTest") {
|
||||
"-Wno-unused-variable",
|
||||
"-fno-omit-frame-pointer",
|
||||
]
|
||||
sources = [ "device_manager_impl_fuzzer.cpp" ]
|
||||
sources = [ "device_list_fuzzer.cpp" ]
|
||||
|
||||
deps = [
|
||||
"${utils_path}:devicemanagerutils",
|
||||
@@ -96,7 +96,7 @@ ohos_fuzztest("DeviceManagerImplFuzzTest") {
|
||||
|
||||
defines = [
|
||||
"HI_LOG_ENABLE",
|
||||
"DH_LOG_TAG=\"DeviceManagerImplFuzzTest\"",
|
||||
"DH_LOG_TAG=\"DeviceListFuzzTest\"",
|
||||
"LOG_DOMAIN=0xD004100",
|
||||
]
|
||||
|
||||
@@ -118,6 +118,6 @@ ohos_fuzztest("DeviceManagerImplFuzzTest") {
|
||||
group("fuzztest") {
|
||||
testonly = true
|
||||
|
||||
deps = [ ":DeviceManagerImplFuzzTest" ]
|
||||
deps = [ ":DeviceListFuzzTest" ]
|
||||
}
|
||||
###############################################################################
|
||||
|
||||
@@ -17,7 +17,7 @@ import("//build/test.gni")
|
||||
import("//foundation/distributedhardware/device_manager/device_manager.gni")
|
||||
|
||||
##############################fuzztest##########################################
|
||||
ohos_fuzztest("DeviceManagerImplFuzzTest") {
|
||||
ohos_fuzztest("GetFaParamFuzzTest") {
|
||||
module_out_path = "device_manager/devicemanager"
|
||||
fuzz_config_file = "//foundation/distributedhardware/device_manager/test/fuzztest/getfaparam_fuzzer"
|
||||
|
||||
@@ -85,7 +85,7 @@ ohos_fuzztest("DeviceManagerImplFuzzTest") {
|
||||
"-Wno-unused-variable",
|
||||
"-fno-omit-frame-pointer",
|
||||
]
|
||||
sources = [ "device_manager_impl_fuzzer.cpp" ]
|
||||
sources = [ "get_fa_param_fuzzer.cpp" ]
|
||||
|
||||
deps = [
|
||||
"${utils_path}:devicemanagerutils",
|
||||
@@ -96,7 +96,7 @@ ohos_fuzztest("DeviceManagerImplFuzzTest") {
|
||||
|
||||
defines = [
|
||||
"HI_LOG_ENABLE",
|
||||
"DH_LOG_TAG=\"DeviceManagerImplFuzzTest\"",
|
||||
"DH_LOG_TAG=\"GetFaParamFuzzTest\"",
|
||||
"LOG_DOMAIN=0xD004100",
|
||||
]
|
||||
|
||||
@@ -118,6 +118,6 @@ ohos_fuzztest("DeviceManagerImplFuzzTest") {
|
||||
group("fuzztest") {
|
||||
testonly = true
|
||||
|
||||
deps = [ ":DeviceManagerImplFuzzTest" ]
|
||||
deps = [ ":GetFaParamFuzzTest" ]
|
||||
}
|
||||
###############################################################################
|
||||
|
||||
@@ -17,7 +17,7 @@ import("//build/test.gni")
|
||||
import("//foundation/distributedhardware/device_manager/device_manager.gni")
|
||||
|
||||
##############################fuzztest##########################################
|
||||
ohos_fuzztest("DeviceManagerImplFuzzTest") {
|
||||
ohos_fuzztest("GetUdidByNetworkIdFuzzTest") {
|
||||
module_out_path = "device_manager/devicemanager"
|
||||
fuzz_config_file = "//foundation/distributedhardware/device_manager/test/fuzztest/getudidbynetworkid_fuzzer"
|
||||
|
||||
@@ -85,7 +85,7 @@ ohos_fuzztest("DeviceManagerImplFuzzTest") {
|
||||
"-Wno-unused-variable",
|
||||
"-fno-omit-frame-pointer",
|
||||
]
|
||||
sources = [ "device_manager_impl_fuzzer.cpp" ]
|
||||
sources = [ "get_udid_by_network_id_fuzzer.cpp" ]
|
||||
|
||||
deps = [
|
||||
"${utils_path}:devicemanagerutils",
|
||||
@@ -96,7 +96,7 @@ ohos_fuzztest("DeviceManagerImplFuzzTest") {
|
||||
|
||||
defines = [
|
||||
"HI_LOG_ENABLE",
|
||||
"DH_LOG_TAG=\"DeviceManagerImplFuzzTest\"",
|
||||
"DH_LOG_TAG=\"GetUdidByNetworkIdFuzzTest\"",
|
||||
"LOG_DOMAIN=0xD004100",
|
||||
]
|
||||
|
||||
@@ -118,6 +118,6 @@ ohos_fuzztest("DeviceManagerImplFuzzTest") {
|
||||
group("fuzztest") {
|
||||
testonly = true
|
||||
|
||||
deps = [ ":DeviceManagerImplFuzzTest" ]
|
||||
deps = [ ":GetUdidByNetworkIdFuzzTest" ]
|
||||
}
|
||||
###############################################################################
|
||||
|
||||
@@ -17,7 +17,7 @@ import("//build/test.gni")
|
||||
import("//foundation/distributedhardware/device_manager/device_manager.gni")
|
||||
|
||||
##############################fuzztest##########################################
|
||||
ohos_fuzztest("DeviceManagerImplFuzzTest") {
|
||||
ohos_fuzztest("GetUuidByNetworkIdFuzzTest") {
|
||||
module_out_path = "device_manager/devicemanager"
|
||||
fuzz_config_file = "//foundation/distributedhardware/device_manager/test/fuzztest/getuuidbynetworkid_fuzzer"
|
||||
|
||||
@@ -85,7 +85,7 @@ ohos_fuzztest("DeviceManagerImplFuzzTest") {
|
||||
"-Wno-unused-variable",
|
||||
"-fno-omit-frame-pointer",
|
||||
]
|
||||
sources = [ "device_manager_impl_fuzzer.cpp" ]
|
||||
sources = [ "get_uuid_by_network_id_fuzzer.cpp" ]
|
||||
|
||||
deps = [
|
||||
"${utils_path}:devicemanagerutils",
|
||||
@@ -96,7 +96,7 @@ ohos_fuzztest("DeviceManagerImplFuzzTest") {
|
||||
|
||||
defines = [
|
||||
"HI_LOG_ENABLE",
|
||||
"DH_LOG_TAG=\"DeviceManagerImplFuzzTest\"",
|
||||
"DH_LOG_TAG=\"GetUuidByNetworkIdFuzzTest\"",
|
||||
"LOG_DOMAIN=0xD004100",
|
||||
]
|
||||
|
||||
@@ -118,6 +118,6 @@ ohos_fuzztest("DeviceManagerImplFuzzTest") {
|
||||
group("fuzztest") {
|
||||
testonly = true
|
||||
|
||||
deps = [ ":DeviceManagerImplFuzzTest" ]
|
||||
deps = [ ":GetUuidByNetworkIdFuzzTest" ]
|
||||
}
|
||||
###############################################################################
|
||||
|
||||
@@ -17,9 +17,9 @@ import("//build/test.gni")
|
||||
import("//foundation/distributedhardware/device_manager/device_manager.gni")
|
||||
|
||||
##############################fuzztest##########################################
|
||||
ohos_fuzztest("DMCredentialImplFuzzTest") {
|
||||
ohos_fuzztest("InitDeviceManagerFuzzTest") {
|
||||
module_out_path = "device_manager/devicemanager"
|
||||
fuzz_config_file = "//foundation/distributedhardware/device_manager/test/fuzztest/dmcredentialimpl_fuzzer"
|
||||
fuzz_config_file = "//foundation/distributedhardware/device_manager/test/fuzztest/initdevicemanager_fuzzer"
|
||||
|
||||
include_dirs = [
|
||||
"${utils_path}/include",
|
||||
@@ -57,7 +57,7 @@ ohos_fuzztest("DMCredentialImplFuzzTest") {
|
||||
"-Wno-unused-variable",
|
||||
"-fno-omit-frame-pointer",
|
||||
]
|
||||
sources = [ "dm_credential_impl_fuzzer.cpp" ]
|
||||
sources = [ "init_device_manager_fuzzer.cpp" ]
|
||||
|
||||
deps = [
|
||||
"${utils_path}:devicemanagerutils",
|
||||
@@ -66,7 +66,7 @@ ohos_fuzztest("DMCredentialImplFuzzTest") {
|
||||
|
||||
defines = [
|
||||
"HI_LOG_ENABLE",
|
||||
"DH_LOG_TAG=\"DMCredentialImplFuzzTest\"",
|
||||
"DH_LOG_TAG=\"InitDeviceManagerFuzzTest\"",
|
||||
"LOG_DOMAIN=0xD004100",
|
||||
]
|
||||
|
||||
@@ -86,6 +86,6 @@ ohos_fuzztest("DMCredentialImplFuzzTest") {
|
||||
group("fuzztest") {
|
||||
testonly = true
|
||||
|
||||
deps = [ ":DMCredentialImplFuzzTest" ]
|
||||
deps = [ ":InitDeviceManagerFuzzTest" ]
|
||||
}
|
||||
###############################################################################
|
||||
|
||||
@@ -17,7 +17,7 @@ import("//build/test.gni")
|
||||
import("//foundation/distributedhardware/device_manager/device_manager.gni")
|
||||
|
||||
##############################fuzztest##########################################
|
||||
ohos_fuzztest("DeviceManagerImplFuzzTest") {
|
||||
ohos_fuzztest("RegisterDeviceManagerFaCallbackFuzzTest") {
|
||||
module_out_path = "device_manager/devicemanager"
|
||||
fuzz_config_file = "//foundation/distributedhardware/device_manager/test/fuzztest/registerdevicemanagerfacallback_fuzzer"
|
||||
|
||||
@@ -85,7 +85,7 @@ ohos_fuzztest("DeviceManagerImplFuzzTest") {
|
||||
"-Wno-unused-variable",
|
||||
"-fno-omit-frame-pointer",
|
||||
]
|
||||
sources = [ "device_manager_impl_fuzzer.cpp" ]
|
||||
sources = [ "register_device_manager_fa_callback_fuzzer.cpp" ]
|
||||
|
||||
deps = [
|
||||
"${utils_path}:devicemanagerutils",
|
||||
@@ -96,7 +96,7 @@ ohos_fuzztest("DeviceManagerImplFuzzTest") {
|
||||
|
||||
defines = [
|
||||
"HI_LOG_ENABLE",
|
||||
"DH_LOG_TAG=\"DeviceManagerImplFuzzTest\"",
|
||||
"DH_LOG_TAG=\"RegisterDeviceManagerFaCallbackFuzzTest\"",
|
||||
"LOG_DOMAIN=0xD004100",
|
||||
]
|
||||
|
||||
@@ -118,6 +118,6 @@ ohos_fuzztest("DeviceManagerImplFuzzTest") {
|
||||
group("fuzztest") {
|
||||
testonly = true
|
||||
|
||||
deps = [ ":DeviceManagerImplFuzzTest" ]
|
||||
deps = [ ":RegisterDeviceManagerFaCallbackFuzzTest" ]
|
||||
}
|
||||
###############################################################################
|
||||
|
||||
@@ -17,9 +17,9 @@ import("//build/test.gni")
|
||||
import("//foundation/distributedhardware/device_manager/device_manager.gni")
|
||||
|
||||
##############################fuzztest##########################################
|
||||
ohos_fuzztest("DeviceManagerImplFuzzTest") {
|
||||
ohos_fuzztest("RegisterDevStateCallbackFuzzTest") {
|
||||
module_out_path = "device_manager/devicemanager"
|
||||
fuzz_config_file = "//foundation/distributedhardware/device_manager/test/fuzztest/registerdevstatecallbackfuzztest"
|
||||
fuzz_config_file = "//foundation/distributedhardware/device_manager/test/fuzztest/registerdevstatecallback_fuzzer"
|
||||
|
||||
include_dirs = [
|
||||
"${utils_path}/include",
|
||||
@@ -85,7 +85,7 @@ ohos_fuzztest("DeviceManagerImplFuzzTest") {
|
||||
"-Wno-unused-variable",
|
||||
"-fno-omit-frame-pointer",
|
||||
]
|
||||
sources = [ "device_manager_impl_fuzzer.cpp" ]
|
||||
sources = [ "register_dev_state_callback_fuzzer.cpp" ]
|
||||
|
||||
deps = [
|
||||
"${utils_path}:devicemanagerutils",
|
||||
@@ -96,7 +96,7 @@ ohos_fuzztest("DeviceManagerImplFuzzTest") {
|
||||
|
||||
defines = [
|
||||
"HI_LOG_ENABLE",
|
||||
"DH_LOG_TAG=\"DeviceManagerImplFuzzTest\"",
|
||||
"DH_LOG_TAG=\"RegisterDevStateCallbackFuzzTest\"",
|
||||
"LOG_DOMAIN=0xD004100",
|
||||
]
|
||||
|
||||
@@ -118,6 +118,6 @@ ohos_fuzztest("DeviceManagerImplFuzzTest") {
|
||||
group("fuzztest") {
|
||||
testonly = true
|
||||
|
||||
deps = [ ":DeviceManagerImplFuzzTest" ]
|
||||
deps = [ ":RegisterDevStateCallbackFuzzTest" ]
|
||||
}
|
||||
###############################################################################
|
||||
|
||||
@@ -17,7 +17,7 @@ import("//build/test.gni")
|
||||
import("//foundation/distributedhardware/device_manager/device_manager.gni")
|
||||
|
||||
##############################fuzztest##########################################
|
||||
ohos_fuzztest("DeviceManagerImplFuzzTest") {
|
||||
ohos_fuzztest("SetUserOperationFuzzTest") {
|
||||
module_out_path = "device_manager/devicemanager"
|
||||
fuzz_config_file = "//foundation/distributedhardware/device_manager/test/fuzztest/setuseroperation_fuzzer"
|
||||
|
||||
@@ -85,7 +85,7 @@ ohos_fuzztest("DeviceManagerImplFuzzTest") {
|
||||
"-Wno-unused-variable",
|
||||
"-fno-omit-frame-pointer",
|
||||
]
|
||||
sources = [ "device_manager_impl_fuzzer.cpp" ]
|
||||
sources = [ "set_user_operation_fuzzer.cpp" ]
|
||||
|
||||
deps = [
|
||||
"${utils_path}:devicemanagerutils",
|
||||
@@ -96,7 +96,7 @@ ohos_fuzztest("DeviceManagerImplFuzzTest") {
|
||||
|
||||
defines = [
|
||||
"HI_LOG_ENABLE",
|
||||
"DH_LOG_TAG=\"DeviceManagerImplFuzzTest\"",
|
||||
"DH_LOG_TAG=\"SetUserOperationFuzzTest\"",
|
||||
"LOG_DOMAIN=0xD004100",
|
||||
]
|
||||
|
||||
@@ -118,6 +118,6 @@ ohos_fuzztest("DeviceManagerImplFuzzTest") {
|
||||
group("fuzztest") {
|
||||
testonly = true
|
||||
|
||||
deps = [ ":DeviceManagerImplFuzzTest" ]
|
||||
deps = [ ":SetUserOperationFuzzTest" ]
|
||||
}
|
||||
###############################################################################
|
||||
|
||||
@@ -17,7 +17,7 @@ import("//build/test.gni")
|
||||
import("//foundation/distributedhardware/device_manager/device_manager.gni")
|
||||
|
||||
##############################fuzztest##########################################
|
||||
ohos_fuzztest("DeviceManagerImplFuzzTest") {
|
||||
ohos_fuzztest("UnAuthenticateDeviceFuzzTest") {
|
||||
module_out_path = "device_manager/devicemanager"
|
||||
fuzz_config_file = "//foundation/distributedhardware/device_manager/test/fuzztest/unauthenticatedevice_fuzzer"
|
||||
|
||||
@@ -85,7 +85,7 @@ ohos_fuzztest("DeviceManagerImplFuzzTest") {
|
||||
"-Wno-unused-variable",
|
||||
"-fno-omit-frame-pointer",
|
||||
]
|
||||
sources = [ "device_manager_impl_fuzzer.cpp" ]
|
||||
sources = [ "un_authenticate_device_fuzzer.cpp" ]
|
||||
|
||||
deps = [
|
||||
"${utils_path}:devicemanagerutils",
|
||||
@@ -96,7 +96,7 @@ ohos_fuzztest("DeviceManagerImplFuzzTest") {
|
||||
|
||||
defines = [
|
||||
"HI_LOG_ENABLE",
|
||||
"DH_LOG_TAG=\"DeviceManagerImplFuzzTest\"",
|
||||
"DH_LOG_TAG=\"UnAuthenticateDeviceFuzzTest\"",
|
||||
"LOG_DOMAIN=0xD004100",
|
||||
]
|
||||
|
||||
@@ -118,6 +118,6 @@ ohos_fuzztest("DeviceManagerImplFuzzTest") {
|
||||
group("fuzztest") {
|
||||
testonly = true
|
||||
|
||||
deps = [ ":DeviceManagerImplFuzzTest" ]
|
||||
deps = [ ":UnAuthenticateDeviceFuzzTest" ]
|
||||
}
|
||||
###############################################################################
|
||||
|
||||
@@ -17,7 +17,7 @@ import("//build/test.gni")
|
||||
import("//foundation/distributedhardware/device_manager/device_manager.gni")
|
||||
|
||||
##############################fuzztest##########################################
|
||||
ohos_fuzztest("DeviceManagerImplFuzzTest") {
|
||||
ohos_fuzztest("UnRegisterDeviceManagerFaCallback") {
|
||||
module_out_path = "device_manager/devicemanager"
|
||||
fuzz_config_file = "//foundation/distributedhardware/device_manager/test/fuzztest/unregisterdevicemanagerfacallback_fuzzer"
|
||||
|
||||
@@ -85,7 +85,7 @@ ohos_fuzztest("DeviceManagerImplFuzzTest") {
|
||||
"-Wno-unused-variable",
|
||||
"-fno-omit-frame-pointer",
|
||||
]
|
||||
sources = [ "device_manager_impl_fuzzer.cpp" ]
|
||||
sources = [ "un_register_device_manager_fa_call_back_fuzzer.cpp" ]
|
||||
|
||||
deps = [
|
||||
"${utils_path}:devicemanagerutils",
|
||||
@@ -96,7 +96,7 @@ ohos_fuzztest("DeviceManagerImplFuzzTest") {
|
||||
|
||||
defines = [
|
||||
"HI_LOG_ENABLE",
|
||||
"DH_LOG_TAG=\"DeviceManagerImplFuzzTest\"",
|
||||
"DH_LOG_TAG=\"UnRegisterDeviceManagerFaCallback\"",
|
||||
"LOG_DOMAIN=0xD004100",
|
||||
]
|
||||
|
||||
@@ -118,6 +118,6 @@ ohos_fuzztest("DeviceManagerImplFuzzTest") {
|
||||
group("fuzztest") {
|
||||
testonly = true
|
||||
|
||||
deps = [ ":DeviceManagerImplFuzzTest" ]
|
||||
deps = [ ":UnRegisterDeviceManagerFaCallback" ]
|
||||
}
|
||||
###############################################################################
|
||||
|
||||
Reference in New Issue
Block a user