mirror of
https://gitee.com/openharmony/sensors_sensor
synced 2025-03-04 12:27:15 +00:00
fix fuzz out path
Signed-off-by: lixiangpeng5 <lixiangpeng5@huawei.com> Change-Id: I8ae0ce097cfb79b63ec0367471d9069e4144d0a7
This commit is contained in:
parent
3a7fb4c2e2
commit
d642aedb29
@ -17,7 +17,7 @@ import("//build/test.gni")
|
||||
import("./../../../../../sensor.gni")
|
||||
|
||||
ohos_fuzztest("GetActiveSensorInfosFuzzTest") {
|
||||
module_out_path = "sensors/sensor"
|
||||
module_out_path = FUZZ_MODULE_OUT_PATH
|
||||
|
||||
fuzz_config_file = "$SUBSYSTEM_DIR/interfaces/native/test/fuzztest/getactivesensorinfos_fuzzer"
|
||||
|
||||
|
@ -17,7 +17,7 @@ import("//build/test.gni")
|
||||
import("./../../../../../sensor.gni")
|
||||
|
||||
ohos_fuzztest("RegisterFuzzTest") {
|
||||
module_out_path = "sensors/sensor"
|
||||
module_out_path = FUZZ_MODULE_OUT_PATH
|
||||
|
||||
fuzz_config_file =
|
||||
"$SUBSYSTEM_DIR/interfaces/native/test/fuzztest/register_fuzzer"
|
||||
|
@ -17,7 +17,7 @@ import("//build/test.gni")
|
||||
import("./../../../../../sensor.gni")
|
||||
|
||||
ohos_fuzztest("ResumeSensorsFuzzTest") {
|
||||
module_out_path = "sensors/sensor"
|
||||
module_out_path = FUZZ_MODULE_OUT_PATH
|
||||
|
||||
fuzz_config_file =
|
||||
"$SUBSYSTEM_DIR/interfaces/native/test/fuzztest/resumesensors_fuzzer"
|
||||
|
@ -17,7 +17,7 @@ import("//build/test.gni")
|
||||
import("./../../../../../sensor.gni")
|
||||
|
||||
ohos_fuzztest("SensorAgentFuzzTest") {
|
||||
module_out_path = "sensors/sensor"
|
||||
module_out_path = FUZZ_MODULE_OUT_PATH
|
||||
|
||||
fuzz_config_file =
|
||||
"$SUBSYSTEM_DIR/interfaces/native/test/fuzztest/sensoragent_fuzzer"
|
||||
|
@ -17,7 +17,7 @@ import("//build/test.gni")
|
||||
import("./../../../../../sensor.gni")
|
||||
|
||||
ohos_fuzztest("SuspendSensorsFuzzTest") {
|
||||
module_out_path = "sensors/sensor"
|
||||
module_out_path = FUZZ_MODULE_OUT_PATH
|
||||
|
||||
fuzz_config_file =
|
||||
"$SUBSYSTEM_DIR/interfaces/native/test/fuzztest/suspendsensors_fuzzer"
|
||||
|
@ -17,7 +17,7 @@ import("//build/test.gni")
|
||||
import("./../../../../../sensor.gni")
|
||||
|
||||
ohos_fuzztest("UnregisterFuzzTest") {
|
||||
module_out_path = "sensors/sensor"
|
||||
module_out_path = FUZZ_MODULE_OUT_PATH
|
||||
|
||||
fuzz_config_file =
|
||||
"$SUBSYSTEM_DIR/interfaces/native/test/fuzztest/unregister_fuzzer"
|
||||
|
@ -19,6 +19,8 @@ declare_args() {
|
||||
|
||||
SUBSYSTEM_DIR = "//base/sensors/sensor"
|
||||
|
||||
FUZZ_MODULE_OUT_PATH = "sensor/sensor"
|
||||
|
||||
sensor_default_defines = []
|
||||
|
||||
if (rust_socket_ipc) {
|
||||
|
@ -17,7 +17,7 @@ import("//build/test.gni")
|
||||
import("./../../../../../sensor.gni")
|
||||
|
||||
ohos_fuzztest("CreateDataChannelStubFuzzTest") {
|
||||
module_out_path = "sensors/sensor"
|
||||
module_out_path = FUZZ_MODULE_OUT_PATH
|
||||
|
||||
fuzz_config_file = "$SUBSYSTEM_DIR/services/sensor/test/fuzztest/createdatachannelstub_fuzzer"
|
||||
|
||||
|
@ -17,7 +17,7 @@ import("//build/test.gni")
|
||||
import("./../../../../../sensor.gni")
|
||||
|
||||
ohos_fuzztest("CreateSocketChannelStubFuzzTest") {
|
||||
module_out_path = "sensors/sensor"
|
||||
module_out_path = FUZZ_MODULE_OUT_PATH
|
||||
|
||||
fuzz_config_file = "$SUBSYSTEM_DIR/services/sensor/test/fuzztest/createsocketchannelstub_fuzzer"
|
||||
|
||||
|
@ -17,7 +17,7 @@ import("//build/test.gni")
|
||||
import("./../../../../../sensor.gni")
|
||||
|
||||
ohos_fuzztest("DestroyDataChannelStubFuzzTest") {
|
||||
module_out_path = "sensors/sensor"
|
||||
module_out_path = FUZZ_MODULE_OUT_PATH
|
||||
|
||||
fuzz_config_file = "$SUBSYSTEM_DIR/services/sensor/test/fuzztest/destroydatachannelstub_fuzzer"
|
||||
|
||||
|
@ -17,7 +17,7 @@ import("//build/test.gni")
|
||||
import("./../../../../../sensor.gni")
|
||||
|
||||
ohos_fuzztest("DestroySocketChannelStubFuzzTest") {
|
||||
module_out_path = "sensors/sensor"
|
||||
module_out_path = FUZZ_MODULE_OUT_PATH
|
||||
|
||||
fuzz_config_file = "$SUBSYSTEM_DIR/services/sensor/test/fuzztest/destroysocketchannelstub_fuzzer"
|
||||
|
||||
|
@ -17,7 +17,7 @@ import("//build/test.gni")
|
||||
import("./../../../../../sensor.gni")
|
||||
|
||||
ohos_fuzztest("DisableActiveInfoCBStubFuzzTest") {
|
||||
module_out_path = "sensors/sensor"
|
||||
module_out_path = FUZZ_MODULE_OUT_PATH
|
||||
|
||||
fuzz_config_file = "$SUBSYSTEM_DIR/services/sensor/test/fuzztest/disableactiveinfocbstub_fuzzer"
|
||||
|
||||
|
@ -17,7 +17,7 @@ import("//build/test.gni")
|
||||
import("./../../../../../sensor.gni")
|
||||
|
||||
ohos_fuzztest("EnableActiveInfoCBStubFuzzTest") {
|
||||
module_out_path = "sensors/sensor"
|
||||
module_out_path = FUZZ_MODULE_OUT_PATH
|
||||
|
||||
fuzz_config_file = "$SUBSYSTEM_DIR/services/sensor/test/fuzztest/enableactiveinfocbstub_fuzzer"
|
||||
|
||||
|
@ -17,7 +17,7 @@ import("//build/test.gni")
|
||||
import("./../../../../../sensor.gni")
|
||||
|
||||
ohos_fuzztest("GetActiveInfoListStubFuzzTest") {
|
||||
module_out_path = "sensors/sensor"
|
||||
module_out_path = FUZZ_MODULE_OUT_PATH
|
||||
|
||||
fuzz_config_file = "$SUBSYSTEM_DIR/services/sensor/test/fuzztest/getactiveinfoliststub_fuzzer"
|
||||
|
||||
|
@ -17,7 +17,7 @@ import("//build/test.gni")
|
||||
import("./../../../../../sensor.gni")
|
||||
|
||||
ohos_fuzztest("GetAllSensorsStubFuzzTest") {
|
||||
module_out_path = "sensors/sensor"
|
||||
module_out_path = FUZZ_MODULE_OUT_PATH
|
||||
|
||||
fuzz_config_file =
|
||||
"$SUBSYSTEM_DIR/services/sensor/test/fuzztest/getallsensorsstub_fuzzer"
|
||||
|
@ -17,7 +17,7 @@ import("//build/test.gni")
|
||||
import("./../../../../../sensor.gni")
|
||||
|
||||
ohos_fuzztest("ResetSensorsStubFuzzTest") {
|
||||
module_out_path = "sensors/sensor"
|
||||
module_out_path = FUZZ_MODULE_OUT_PATH
|
||||
|
||||
fuzz_config_file =
|
||||
"$SUBSYSTEM_DIR/services/sensor/test/fuzztest/resetsensorsstub_fuzzer"
|
||||
|
@ -17,7 +17,7 @@ import("//build/test.gni")
|
||||
import("./../../../../../sensor.gni")
|
||||
|
||||
ohos_fuzztest("ResumeSensorsStubFuzzTest") {
|
||||
module_out_path = "sensors/sensor"
|
||||
module_out_path = FUZZ_MODULE_OUT_PATH
|
||||
|
||||
fuzz_config_file =
|
||||
"$SUBSYSTEM_DIR/services/sensor/test/fuzztest/resumesensorsstub_fuzzer"
|
||||
|
@ -17,7 +17,7 @@ import("//build/test.gni")
|
||||
import("./../../../../../sensor.gni")
|
||||
|
||||
ohos_fuzztest("SensorDisableStubFuzzTest") {
|
||||
module_out_path = "sensors/sensor"
|
||||
module_out_path = FUZZ_MODULE_OUT_PATH
|
||||
|
||||
fuzz_config_file =
|
||||
"$SUBSYSTEM_DIR/services/sensor/test/fuzztest/sensordisablestub_fuzzer"
|
||||
|
@ -17,7 +17,7 @@ import("//build/test.gni")
|
||||
import("./../../../../../sensor.gni")
|
||||
|
||||
ohos_fuzztest("SensorEnableStubFuzzTest") {
|
||||
module_out_path = "sensors/sensor"
|
||||
module_out_path = FUZZ_MODULE_OUT_PATH
|
||||
|
||||
fuzz_config_file =
|
||||
"$SUBSYSTEM_DIR/services/sensor/test/fuzztest/sensorenablestub_fuzzer"
|
||||
|
@ -17,7 +17,7 @@ import("//build/test.gni")
|
||||
import("./../../../../../sensor.gni")
|
||||
|
||||
ohos_fuzztest("SensorOnRemoteRequestFuzzTest") {
|
||||
module_out_path = "sensors/sensor"
|
||||
module_out_path = FUZZ_MODULE_OUT_PATH
|
||||
|
||||
fuzz_config_file = "$SUBSYSTEM_DIR/services/sensor/test/fuzztest/sensoronremoterequest_fuzzer"
|
||||
|
||||
|
@ -17,7 +17,7 @@ import("//build/test.gni")
|
||||
import("./../../../../../sensor.gni")
|
||||
|
||||
ohos_fuzztest("SuspendSensorsStubFuzzTest") {
|
||||
module_out_path = "sensors/sensor"
|
||||
module_out_path = FUZZ_MODULE_OUT_PATH
|
||||
|
||||
fuzz_config_file =
|
||||
"$SUBSYSTEM_DIR/services/sensor/test/fuzztest/suspendsensorsstub_fuzzer"
|
||||
|
Loading…
x
Reference in New Issue
Block a user