diff --git a/js_runtime_config.gni b/js_runtime_config.gni index e403fd34ff..52dabf0570 100644 --- a/js_runtime_config.gni +++ b/js_runtime_config.gni @@ -113,3 +113,5 @@ enable_local_code_sign = false if (have_local_code_sign && enable_target_compilation) { enable_local_code_sign = true } + +fuzz_test_output_path = "ets_runtime/ets_runtime" diff --git a/test/fuzztest/arraybufferrefnew_fuzzer/BUILD.gn b/test/fuzztest/arraybufferrefnew_fuzzer/BUILD.gn index 39627d60b2..fddce3585a 100644 --- a/test/fuzztest/arraybufferrefnew_fuzzer/BUILD.gn +++ b/test/fuzztest/arraybufferrefnew_fuzzer/BUILD.gn @@ -19,7 +19,7 @@ import("//build/ohos.gni") ##################################fuzztest##################################### ohos_fuzztest("ArrayBufferRefNewFuzzTest") { - module_out_path = "arkcompiler/ets_runtime" + module_out_path = fuzz_test_output_path fuzz_config_file = "//arkcompiler/ets_runtime/test/fuzztest/arraybufferrefnew_fuzzer" diff --git a/test/fuzztest/arraybufferrefnewwithtwoparameters_fuzzer/BUILD.gn b/test/fuzztest/arraybufferrefnewwithtwoparameters_fuzzer/BUILD.gn index b10b6e0a75..3170d3e0b3 100644 --- a/test/fuzztest/arraybufferrefnewwithtwoparameters_fuzzer/BUILD.gn +++ b/test/fuzztest/arraybufferrefnewwithtwoparameters_fuzzer/BUILD.gn @@ -19,7 +19,7 @@ import("//build/ohos.gni") ##################################fuzztest##################################### ohos_fuzztest("ArrayBufferRefNewWithTwoParametersFuzzTest") { - module_out_path = "arkcompiler/ets_runtime" + module_out_path = fuzz_test_output_path fuzz_config_file = "//arkcompiler/ets_runtime/test/fuzztest/arraybufferrefnewwithtwoparameters_fuzzer" diff --git a/test/fuzztest/arraylist_fuzzer/BUILD.gn b/test/fuzztest/arraylist_fuzzer/BUILD.gn index 223eb2e648..d42f48787b 100644 --- a/test/fuzztest/arraylist_fuzzer/BUILD.gn +++ b/test/fuzztest/arraylist_fuzzer/BUILD.gn @@ -19,7 +19,7 @@ import("//build/ohos.gni") ##################################fuzztest##################################### ohos_fuzztest("ArrayListFuzzTest") { - module_out_path = "arkcompiler/ets_runtime" + module_out_path = fuzz_test_output_path fuzz_config_file = "//arkcompiler/ets_runtime/test/fuzztest/arraylist_fuzzer" diff --git a/test/fuzztest/bigint64arrayrefnew_fuzzer/BUILD.gn b/test/fuzztest/bigint64arrayrefnew_fuzzer/BUILD.gn index 7246a384e6..ec203d6105 100644 --- a/test/fuzztest/bigint64arrayrefnew_fuzzer/BUILD.gn +++ b/test/fuzztest/bigint64arrayrefnew_fuzzer/BUILD.gn @@ -19,7 +19,7 @@ import("//build/ohos.gni") ##################################fuzztest##################################### ohos_fuzztest("BigInt64ArrayRefNewFuzzTest") { - module_out_path = "arkcompiler/ets_runtime" + module_out_path = fuzz_test_output_path fuzz_config_file = "//arkcompiler/ets_runtime/test/fuzztest/bigint64arrayrefnew_fuzzer" diff --git a/test/fuzztest/biginttoint64_fuzzer/BUILD.gn b/test/fuzztest/biginttoint64_fuzzer/BUILD.gn index e25f93a6be..3fcf2959df 100644 --- a/test/fuzztest/biginttoint64_fuzzer/BUILD.gn +++ b/test/fuzztest/biginttoint64_fuzzer/BUILD.gn @@ -19,7 +19,7 @@ import("//build/ohos.gni") ####################################fuzztest################################## ohos_fuzztest("BigIntToInt64FuzzTest") { - module_out_path = "arkcompiler/ets_runtime" + module_out_path = fuzz_test_output_path fuzz_config_file = "//arkcompiler/ets_runtime/test/fuzztest/biginttoint64_fuzzer" diff --git a/test/fuzztest/biginttouint64_fuzzer/BUILD.gn b/test/fuzztest/biginttouint64_fuzzer/BUILD.gn index 70f24f628e..15b5d69ba7 100644 --- a/test/fuzztest/biginttouint64_fuzzer/BUILD.gn +++ b/test/fuzztest/biginttouint64_fuzzer/BUILD.gn @@ -19,7 +19,7 @@ import("//build/ohos.gni") ####################################fuzztest################################## ohos_fuzztest("BigIntToUint64FuzzTest") { - module_out_path = "arkcompiler/ets_runtime" + module_out_path = fuzz_test_output_path fuzz_config_file = "//arkcompiler/ets_runtime/test/fuzztest/biginttouint64_fuzzer" diff --git a/test/fuzztest/biguint64arrayrefnew_fuzzer/BUILD.gn b/test/fuzztest/biguint64arrayrefnew_fuzzer/BUILD.gn index d7c166b228..13f71e87c2 100644 --- a/test/fuzztest/biguint64arrayrefnew_fuzzer/BUILD.gn +++ b/test/fuzztest/biguint64arrayrefnew_fuzzer/BUILD.gn @@ -19,7 +19,7 @@ import("//build/ohos.gni") ##################################fuzztest##################################### ohos_fuzztest("BigUint64ArrayRefNewFuzzTest") { - module_out_path = "arkcompiler/ets_runtime" + module_out_path = fuzz_test_output_path fuzz_config_file = "//arkcompiler/ets_runtime/test/fuzztest/biguint64arrayrefnew_fuzzer" diff --git a/test/fuzztest/binarytotext_fuzzer/BUILD.gn b/test/fuzztest/binarytotext_fuzzer/BUILD.gn index cd3d97fec2..3808cb616f 100644 --- a/test/fuzztest/binarytotext_fuzzer/BUILD.gn +++ b/test/fuzztest/binarytotext_fuzzer/BUILD.gn @@ -19,7 +19,7 @@ import("//build/ohos.gni") ##################################fuzztest##################################### ohos_fuzztest("BinaryToTextFuzzTest") { - module_out_path = "arkcompiler/ets_runtime" + module_out_path = fuzz_test_output_path fuzz_config_file = "$js_root/test/fuzztest/binarytotext_fuzzer" diff --git a/test/fuzztest/booleanrefnewbool_fuzzer/BUILD.gn b/test/fuzztest/booleanrefnewbool_fuzzer/BUILD.gn index ff453db538..e26c8c780e 100644 --- a/test/fuzztest/booleanrefnewbool_fuzzer/BUILD.gn +++ b/test/fuzztest/booleanrefnewbool_fuzzer/BUILD.gn @@ -19,7 +19,7 @@ import("//build/ohos.gni") ##################################fuzztest##################################### ohos_fuzztest("BooleanRefNewBoolFuzzTest") { - module_out_path = "arkcompiler/ets_runtime" + module_out_path = fuzz_test_output_path fuzz_config_file = "//arkcompiler/ets_runtime/test/fuzztest/booleanrefnewbool_fuzzer" diff --git a/test/fuzztest/buildjsstacktrace_fuzzer/BUILD.gn b/test/fuzztest/buildjsstacktrace_fuzzer/BUILD.gn index 58edd831bc..bda48a36b9 100644 --- a/test/fuzztest/buildjsstacktrace_fuzzer/BUILD.gn +++ b/test/fuzztest/buildjsstacktrace_fuzzer/BUILD.gn @@ -19,7 +19,7 @@ import("//build/ohos.gni") ####################################fuzztest################################## ohos_fuzztest("BuildJsStackTraceFuzzTest") { - module_out_path = "arkcompiler/ets_runtime" + module_out_path = fuzz_test_output_path fuzz_config_file = "$js_root/test/fuzztest/buildjsstacktrace_fuzzer" diff --git a/test/fuzztest/buildnativeandJsstacktrace_fuzzer/BUILD.gn b/test/fuzztest/buildnativeandJsstacktrace_fuzzer/BUILD.gn index 82b485a8ae..caa2904974 100644 --- a/test/fuzztest/buildnativeandJsstacktrace_fuzzer/BUILD.gn +++ b/test/fuzztest/buildnativeandJsstacktrace_fuzzer/BUILD.gn @@ -19,7 +19,7 @@ import("//build/ohos.gni") ##################################fuzztest##################################### ohos_fuzztest("BuildNativeAndJsStackTraceFuzzTest") { - module_out_path = "arkcompiler/ets_runtime" + module_out_path = fuzz_test_output_path fuzz_config_file = "//arkcompiler/ets_runtime/test/fuzztest/buildnativeandJsstacktrace_fuzzer" diff --git a/test/fuzztest/builtinsarraybufferallocatearraybuffer_fuzzer/BUILD.gn b/test/fuzztest/builtinsarraybufferallocatearraybuffer_fuzzer/BUILD.gn index 5f34be841d..acba1d1486 100644 --- a/test/fuzztest/builtinsarraybufferallocatearraybuffer_fuzzer/BUILD.gn +++ b/test/fuzztest/builtinsarraybufferallocatearraybuffer_fuzzer/BUILD.gn @@ -20,7 +20,7 @@ import("//build/test.gni") ##################################fuzztest##################################### ohos_fuzztest("BuiltinsArrayBufferAllocateArrayBufferFuzzTest") { - module_out_path = "arkcompiler/ets_runtime" + module_out_path = fuzz_test_output_path fuzz_config_file = "//arkcompiler/ets_runtime/test/fuzztest/builtinsarraybufferallocatearraybuffer_fuzzer" diff --git a/test/fuzztest/builtinsarraybufferarraybufferconstructor_fuzzer/BUILD.gn b/test/fuzztest/builtinsarraybufferarraybufferconstructor_fuzzer/BUILD.gn index f6ea3a2219..0d1b342b4d 100644 --- a/test/fuzztest/builtinsarraybufferarraybufferconstructor_fuzzer/BUILD.gn +++ b/test/fuzztest/builtinsarraybufferarraybufferconstructor_fuzzer/BUILD.gn @@ -20,7 +20,7 @@ import("//build/test.gni") ##################################fuzztest##################################### ohos_fuzztest("BuiltinsArrayBufferArrayBufferConstructorFuzzTest") { - module_out_path = "arkcompiler/ets_runtime" + module_out_path = fuzz_test_output_path fuzz_config_file = "//arkcompiler/ets_runtime/test/fuzztest/builtinsarraybufferarraybufferconstructor_fuzzer" diff --git a/test/fuzztest/builtinsarraybufferclonearraybuffer_fuzzer/BUILD.gn b/test/fuzztest/builtinsarraybufferclonearraybuffer_fuzzer/BUILD.gn index fe11ee7ca6..fce66ce76e 100644 --- a/test/fuzztest/builtinsarraybufferclonearraybuffer_fuzzer/BUILD.gn +++ b/test/fuzztest/builtinsarraybufferclonearraybuffer_fuzzer/BUILD.gn @@ -20,7 +20,7 @@ import("//build/test.gni") ##################################fuzztest##################################### ohos_fuzztest("BuiltinsArrayBufferCloneArrayBufferFuzzTest") { - module_out_path = "arkcompiler/ets_runtime" + module_out_path = fuzz_test_output_path fuzz_config_file = "//arkcompiler/ets_runtime/test/fuzztest/builtinsarraybufferclonearraybuffer_fuzzer" diff --git a/test/fuzztest/builtinsarraybufferfastsetvalueinbuffer_fuzzer/BUILD.gn b/test/fuzztest/builtinsarraybufferfastsetvalueinbuffer_fuzzer/BUILD.gn index 33eb6abac9..2b4154c1a2 100644 --- a/test/fuzztest/builtinsarraybufferfastsetvalueinbuffer_fuzzer/BUILD.gn +++ b/test/fuzztest/builtinsarraybufferfastsetvalueinbuffer_fuzzer/BUILD.gn @@ -20,7 +20,7 @@ import("//build/test.gni") ##################################fuzztest##################################### ohos_fuzztest("BuiltinsArrayBufferFastSetValueInBufferFuzzTest") { - module_out_path = "arkcompiler/ets_runtime" + module_out_path = fuzz_test_output_path fuzz_config_file = "//arkcompiler/ets_runtime/test/fuzztest/builtinsarraybufferfastsetvalueinbuffer_fuzzer" diff --git a/test/fuzztest/builtinsarraybuffergetvaluefrombufferforbigint_fuzzer/BUILD.gn b/test/fuzztest/builtinsarraybuffergetvaluefrombufferforbigint_fuzzer/BUILD.gn index 26e9f5822e..a528843969 100644 --- a/test/fuzztest/builtinsarraybuffergetvaluefrombufferforbigint_fuzzer/BUILD.gn +++ b/test/fuzztest/builtinsarraybuffergetvaluefrombufferforbigint_fuzzer/BUILD.gn @@ -20,7 +20,7 @@ import("//build/test.gni") ##################################fuzztest##################################### ohos_fuzztest("BuiltinsArrayBufferGetValueFromBufferForBigIntFuzzTest") { - module_out_path = "arkcompiler/ets_runtime" + module_out_path = fuzz_test_output_path fuzz_config_file = "//arkcompiler/ets_runtime/test/fuzztest/builtinsarraybuffergetvaluefrombufferforbigint_fuzzer" diff --git a/test/fuzztest/builtinsarraybuffergetvaluefrombufferforfloat_fuzzer/BUILD.gn b/test/fuzztest/builtinsarraybuffergetvaluefrombufferforfloat_fuzzer/BUILD.gn index f4de6f1d89..1521fcc52f 100644 --- a/test/fuzztest/builtinsarraybuffergetvaluefrombufferforfloat_fuzzer/BUILD.gn +++ b/test/fuzztest/builtinsarraybuffergetvaluefrombufferforfloat_fuzzer/BUILD.gn @@ -20,7 +20,7 @@ import("//build/test.gni") ##################################fuzztest##################################### ohos_fuzztest("BuiltinsArrayBufferGetValueFromBufferForFloatFuzzTest") { - module_out_path = "arkcompiler/ets_runtime" + module_out_path = fuzz_test_output_path fuzz_config_file = "//arkcompiler/ets_runtime/test/fuzztest/builtinsarraybuffergetvaluefrombufferforfloat_fuzzer" diff --git a/test/fuzztest/builtinsarraybuffergetvaluefrombufferforinteger_fuzzer/BUILD.gn b/test/fuzztest/builtinsarraybuffergetvaluefrombufferforinteger_fuzzer/BUILD.gn index 4433ff6c54..b83d66a67c 100644 --- a/test/fuzztest/builtinsarraybuffergetvaluefrombufferforinteger_fuzzer/BUILD.gn +++ b/test/fuzztest/builtinsarraybuffergetvaluefrombufferforinteger_fuzzer/BUILD.gn @@ -20,7 +20,7 @@ import("//build/test.gni") ##################################fuzztest##################################### ohos_fuzztest("BuiltinsArrayBufferGetValueFromBufferForIntegerFuzzTest") { - module_out_path = "arkcompiler/ets_runtime" + module_out_path = fuzz_test_output_path fuzz_config_file = "//arkcompiler/ets_runtime/test/fuzztest/builtinsarraybuffergetvaluefrombufferforinteger_fuzzer" diff --git a/test/fuzztest/builtinsarraybufferisview_fuzzer/BUILD.gn b/test/fuzztest/builtinsarraybufferisview_fuzzer/BUILD.gn index a9b253214d..35c6d09cb0 100644 --- a/test/fuzztest/builtinsarraybufferisview_fuzzer/BUILD.gn +++ b/test/fuzztest/builtinsarraybufferisview_fuzzer/BUILD.gn @@ -20,7 +20,7 @@ import("//build/test.gni") ##################################fuzztest##################################### ohos_fuzztest("BuiltinsArrayBufferIsViewFuzzTest") { - module_out_path = "arkcompiler/ets_runtime" + module_out_path = fuzz_test_output_path fuzz_config_file = "//arkcompiler/ets_runtime/test/fuzztest/builtinsarraybufferisview_fuzzer" diff --git a/test/fuzztest/builtinsarraybuffersetvalueinbufferforbyte_fuzzer/BUILD.gn b/test/fuzztest/builtinsarraybuffersetvalueinbufferforbyte_fuzzer/BUILD.gn index 4aa75e9f2d..e7e0ee80eb 100644 --- a/test/fuzztest/builtinsarraybuffersetvalueinbufferforbyte_fuzzer/BUILD.gn +++ b/test/fuzztest/builtinsarraybuffersetvalueinbufferforbyte_fuzzer/BUILD.gn @@ -20,7 +20,7 @@ import("//build/test.gni") ##################################fuzztest##################################### ohos_fuzztest("BuiltinsArrayBufferSetValueInBufferForByteFuzzTest") { - module_out_path = "arkcompiler/ets_runtime" + module_out_path = fuzz_test_output_path fuzz_config_file = "//arkcompiler/ets_runtime/test/fuzztest/builtinsarraybuffersetvalueinbufferforbyte_fuzzer" diff --git a/test/fuzztest/builtinsarraybuffersetvalueinbufferforuint8clamped_fuzzer/BUILD.gn b/test/fuzztest/builtinsarraybuffersetvalueinbufferforuint8clamped_fuzzer/BUILD.gn index 25ab651cab..65ca596fd8 100644 --- a/test/fuzztest/builtinsarraybuffersetvalueinbufferforuint8clamped_fuzzer/BUILD.gn +++ b/test/fuzztest/builtinsarraybuffersetvalueinbufferforuint8clamped_fuzzer/BUILD.gn @@ -20,7 +20,7 @@ import("//build/test.gni") ##################################fuzztest##################################### ohos_fuzztest("BuiltinsArrayBufferSetValueInBufferForUint8ClampedFuzzTest") { - module_out_path = "arkcompiler/ets_runtime" + module_out_path = fuzz_test_output_path fuzz_config_file = "//arkcompiler/ets_runtime/test/fuzztest/builtinsarraybuffersetvalueinbufferforuint8clamped_fuzzer" diff --git a/test/fuzztest/containersdequeforeach_fuzzer/BUILD.gn b/test/fuzztest/containersdequeforeach_fuzzer/BUILD.gn index 47a8df6a68..811ec8aab6 100644 --- a/test/fuzztest/containersdequeforeach_fuzzer/BUILD.gn +++ b/test/fuzztest/containersdequeforeach_fuzzer/BUILD.gn @@ -19,7 +19,7 @@ import("//build/ohos.gni") ##################################fuzztest##################################### ohos_fuzztest("ContainersDequeForEachFuzzTest") { - module_out_path = "arkcompiler/ets_runtime" + module_out_path = fuzz_test_output_path fuzz_config_file = "//arkcompiler/ets_runtime/test/fuzztest/containersdequeforeach_fuzzer" diff --git a/test/fuzztest/containersdequegetfirst_fuzzer/BUILD.gn b/test/fuzztest/containersdequegetfirst_fuzzer/BUILD.gn index 85dcca75b2..fed721687e 100644 --- a/test/fuzztest/containersdequegetfirst_fuzzer/BUILD.gn +++ b/test/fuzztest/containersdequegetfirst_fuzzer/BUILD.gn @@ -19,7 +19,7 @@ import("//build/ohos.gni") ##################################fuzztest##################################### ohos_fuzztest("ContainersDequeGetFirstFuzzTest") { - module_out_path = "arkcompiler/ets_runtime" + module_out_path = fuzz_test_output_path fuzz_config_file = "//arkcompiler/ets_runtime/test/fuzztest/containersdequegetfirst_fuzzer" diff --git a/test/fuzztest/containersdequegetlast_fuzzer/BUILD.gn b/test/fuzztest/containersdequegetlast_fuzzer/BUILD.gn index 1ec8ab5b3d..fd8b8b62b4 100644 --- a/test/fuzztest/containersdequegetlast_fuzzer/BUILD.gn +++ b/test/fuzztest/containersdequegetlast_fuzzer/BUILD.gn @@ -19,7 +19,7 @@ import("//build/ohos.gni") ##################################fuzztest##################################### ohos_fuzztest("ContainersDequeGetLastFuzzTest") { - module_out_path = "arkcompiler/ets_runtime" + module_out_path = fuzz_test_output_path fuzz_config_file = "//arkcompiler/ets_runtime/test/fuzztest/containersdequegetlast_fuzzer" diff --git a/test/fuzztest/containersdequehas_fuzzer/BUILD.gn b/test/fuzztest/containersdequehas_fuzzer/BUILD.gn index cb46e0b927..7f04c95631 100644 --- a/test/fuzztest/containersdequehas_fuzzer/BUILD.gn +++ b/test/fuzztest/containersdequehas_fuzzer/BUILD.gn @@ -19,7 +19,7 @@ import("//build/ohos.gni") ##################################fuzztest##################################### ohos_fuzztest("ContainersDequeHasFuzzTest") { - module_out_path = "arkcompiler/ets_runtime" + module_out_path = fuzz_test_output_path fuzz_config_file = "//arkcompiler/ets_runtime/test/fuzztest/containersdequehas_fuzzer" diff --git a/test/fuzztest/containersdequeinsertend_fuzzer/BUILD.gn b/test/fuzztest/containersdequeinsertend_fuzzer/BUILD.gn index b9986020c9..be59e4bdbd 100644 --- a/test/fuzztest/containersdequeinsertend_fuzzer/BUILD.gn +++ b/test/fuzztest/containersdequeinsertend_fuzzer/BUILD.gn @@ -19,7 +19,7 @@ import("//build/ohos.gni") ##################################fuzztest##################################### ohos_fuzztest("ContainersDequeInsertEndFuzzTest") { - module_out_path = "arkcompiler/ets_runtime" + module_out_path = fuzz_test_output_path fuzz_config_file = "//arkcompiler/ets_runtime/test/fuzztest/containersdequeinsertend_fuzzer" diff --git a/test/fuzztest/containersdequeinsertfront_fuzzer/BUILD.gn b/test/fuzztest/containersdequeinsertfront_fuzzer/BUILD.gn index 6915ebca69..e3ad4bed75 100644 --- a/test/fuzztest/containersdequeinsertfront_fuzzer/BUILD.gn +++ b/test/fuzztest/containersdequeinsertfront_fuzzer/BUILD.gn @@ -19,7 +19,7 @@ import("//build/ohos.gni") ##################################fuzztest##################################### ohos_fuzztest("ContainersDequeInsertFrontFuzzTest") { - module_out_path = "arkcompiler/ets_runtime" + module_out_path = fuzz_test_output_path fuzz_config_file = "//arkcompiler/ets_runtime/test/fuzztest/containersdequeinsertfront_fuzzer" diff --git a/test/fuzztest/containersdequeiterator_fuzzer/BUILD.gn b/test/fuzztest/containersdequeiterator_fuzzer/BUILD.gn index 34a07c4846..556a0d3e7e 100644 --- a/test/fuzztest/containersdequeiterator_fuzzer/BUILD.gn +++ b/test/fuzztest/containersdequeiterator_fuzzer/BUILD.gn @@ -19,7 +19,7 @@ import("//build/ohos.gni") ##################################fuzztest##################################### ohos_fuzztest("ContainersDequeIteratorFuzzTest") { - module_out_path = "arkcompiler/ets_runtime" + module_out_path = fuzz_test_output_path fuzz_config_file = "//arkcompiler/ets_runtime/test/fuzztest/containersdequeiterator_fuzzer" diff --git a/test/fuzztest/containersdequepopfirst_fuzzer/BUILD.gn b/test/fuzztest/containersdequepopfirst_fuzzer/BUILD.gn index 98959271bd..8dc7d56fe7 100644 --- a/test/fuzztest/containersdequepopfirst_fuzzer/BUILD.gn +++ b/test/fuzztest/containersdequepopfirst_fuzzer/BUILD.gn @@ -19,7 +19,7 @@ import("//build/ohos.gni") ##################################fuzztest##################################### ohos_fuzztest("ContainersDequePopFirstFuzzTest") { - module_out_path = "arkcompiler/ets_runtime" + module_out_path = fuzz_test_output_path fuzz_config_file = "//arkcompiler/ets_runtime/test/fuzztest/containersdequepopfirst_fuzzer" diff --git a/test/fuzztest/containersdequepoplast_fuzzer/BUILD.gn b/test/fuzztest/containersdequepoplast_fuzzer/BUILD.gn index dc7a6ed9d6..cb39dd7907 100644 --- a/test/fuzztest/containersdequepoplast_fuzzer/BUILD.gn +++ b/test/fuzztest/containersdequepoplast_fuzzer/BUILD.gn @@ -19,7 +19,7 @@ import("//build/ohos.gni") ##################################fuzztest##################################### ohos_fuzztest("ContainersDequePopLastFuzzTest") { - module_out_path = "arkcompiler/ets_runtime" + module_out_path = fuzz_test_output_path fuzz_config_file = "//arkcompiler/ets_runtime/test/fuzztest/containersdequepoplast_fuzzer" diff --git a/test/fuzztest/containershashmap_fuzzer/BUILD.gn b/test/fuzztest/containershashmap_fuzzer/BUILD.gn index 6c535b7223..05aed9b410 100644 --- a/test/fuzztest/containershashmap_fuzzer/BUILD.gn +++ b/test/fuzztest/containershashmap_fuzzer/BUILD.gn @@ -19,7 +19,7 @@ import("//build/ohos.gni") ##################################fuzztest##################################### ohos_fuzztest("ContainersHashMapFuzzTest") { - module_out_path = "arkcompiler/ets_runtime" + module_out_path = fuzz_test_output_path fuzz_config_file = "//arkcompiler/ets_runtime/test/fuzztest/containershashmap_fuzzer" diff --git a/test/fuzztest/containershashmapclear_fuzzer/BUILD.gn b/test/fuzztest/containershashmapclear_fuzzer/BUILD.gn index dafcdd0520..5e40128c07 100644 --- a/test/fuzztest/containershashmapclear_fuzzer/BUILD.gn +++ b/test/fuzztest/containershashmapclear_fuzzer/BUILD.gn @@ -19,7 +19,7 @@ import("//build/ohos.gni") ##################################fuzztest##################################### ohos_fuzztest("ContainersHashMapClearFuzzTest") { - module_out_path = "arkcompiler/ets_runtime" + module_out_path = fuzz_test_output_path fuzz_config_file = "//arkcompiler/ets_runtime/test/fuzztest/containershashmapclear_fuzzer" diff --git a/test/fuzztest/containershashmapentries_fuzzer/BUILD.gn b/test/fuzztest/containershashmapentries_fuzzer/BUILD.gn index 53b14b8e16..f6fe972a5f 100644 --- a/test/fuzztest/containershashmapentries_fuzzer/BUILD.gn +++ b/test/fuzztest/containershashmapentries_fuzzer/BUILD.gn @@ -19,7 +19,7 @@ import("//build/ohos.gni") ##################################fuzztest##################################### ohos_fuzztest("ContainersHashMapEntriesFuzzTest") { - module_out_path = "arkcompiler/ets_runtime" + module_out_path = fuzz_test_output_path fuzz_config_file = "//arkcompiler/ets_runtime/test/fuzztest/containershashmapentries_fuzzer" diff --git a/test/fuzztest/containershashmapforeach_fuzzer/BUILD.gn b/test/fuzztest/containershashmapforeach_fuzzer/BUILD.gn index de13d68cf0..bc6b0f88f7 100644 --- a/test/fuzztest/containershashmapforeach_fuzzer/BUILD.gn +++ b/test/fuzztest/containershashmapforeach_fuzzer/BUILD.gn @@ -19,7 +19,7 @@ import("//build/ohos.gni") ##################################fuzztest##################################### ohos_fuzztest("ContainersHashMapForEachFuzzTest") { - module_out_path = "arkcompiler/ets_runtime" + module_out_path = fuzz_test_output_path fuzz_config_file = "//arkcompiler/ets_runtime/test/fuzztest/containershashmapforeach_fuzzer" diff --git a/test/fuzztest/containershashmapget_fuzzer/BUILD.gn b/test/fuzztest/containershashmapget_fuzzer/BUILD.gn index 6c8fee94cf..1e2b2d84ee 100644 --- a/test/fuzztest/containershashmapget_fuzzer/BUILD.gn +++ b/test/fuzztest/containershashmapget_fuzzer/BUILD.gn @@ -19,7 +19,7 @@ import("//build/ohos.gni") ##################################fuzztest##################################### ohos_fuzztest("ContainersHashMapGetFuzzTest") { - module_out_path = "arkcompiler/ets_runtime" + module_out_path = fuzz_test_output_path fuzz_config_file = "//arkcompiler/ets_runtime/test/fuzztest/containershashmapget_fuzzer" diff --git a/test/fuzztest/containershashmapgetlength_fuzzer/BUILD.gn b/test/fuzztest/containershashmapgetlength_fuzzer/BUILD.gn index 2c1d67beb6..152c58ed51 100644 --- a/test/fuzztest/containershashmapgetlength_fuzzer/BUILD.gn +++ b/test/fuzztest/containershashmapgetlength_fuzzer/BUILD.gn @@ -19,7 +19,7 @@ import("//build/ohos.gni") ##################################fuzztest##################################### ohos_fuzztest("ContainersHashMapGetLengthFuzzTest") { - module_out_path = "arkcompiler/ets_runtime" + module_out_path = fuzz_test_output_path fuzz_config_file = "//arkcompiler/ets_runtime/test/fuzztest/containershashmapgetlength_fuzzer" diff --git a/test/fuzztest/containershashmaphaskey_fuzzer/BUILD.gn b/test/fuzztest/containershashmaphaskey_fuzzer/BUILD.gn index 2d225a9256..db0e69655f 100644 --- a/test/fuzztest/containershashmaphaskey_fuzzer/BUILD.gn +++ b/test/fuzztest/containershashmaphaskey_fuzzer/BUILD.gn @@ -19,7 +19,7 @@ import("//build/ohos.gni") ##################################fuzztest##################################### ohos_fuzztest("ContainersHashMapHasKeyFuzzTest") { - module_out_path = "arkcompiler/ets_runtime" + module_out_path = fuzz_test_output_path fuzz_config_file = "//arkcompiler/ets_runtime/test/fuzztest/containershashmaphaskey_fuzzer" diff --git a/test/fuzztest/containershashmaphasvalue_fuzzer/BUILD.gn b/test/fuzztest/containershashmaphasvalue_fuzzer/BUILD.gn index 7cd26bc455..9de6a13cd7 100644 --- a/test/fuzztest/containershashmaphasvalue_fuzzer/BUILD.gn +++ b/test/fuzztest/containershashmaphasvalue_fuzzer/BUILD.gn @@ -19,7 +19,7 @@ import("//build/ohos.gni") ##################################fuzztest##################################### ohos_fuzztest("ContainersHashMapHasValueFuzzTest") { - module_out_path = "arkcompiler/ets_runtime" + module_out_path = fuzz_test_output_path fuzz_config_file = "//arkcompiler/ets_runtime/test/fuzztest/containershashmaphasvalue_fuzzer" diff --git a/test/fuzztest/containershashmapisempty_fuzzer/BUILD.gn b/test/fuzztest/containershashmapisempty_fuzzer/BUILD.gn index c035bded2b..bd817bcfb5 100644 --- a/test/fuzztest/containershashmapisempty_fuzzer/BUILD.gn +++ b/test/fuzztest/containershashmapisempty_fuzzer/BUILD.gn @@ -19,7 +19,7 @@ import("//build/ohos.gni") ##################################fuzztest##################################### ohos_fuzztest("ContainersHashMapIsEmptyFuzzTest") { - module_out_path = "arkcompiler/ets_runtime" + module_out_path = fuzz_test_output_path fuzz_config_file = "//arkcompiler/ets_runtime/test/fuzztest/containershashmapisempty_fuzzer" diff --git a/test/fuzztest/containershashmapkeys_fuzzer/BUILD.gn b/test/fuzztest/containershashmapkeys_fuzzer/BUILD.gn index 3e05a0ff99..50c09bdc25 100644 --- a/test/fuzztest/containershashmapkeys_fuzzer/BUILD.gn +++ b/test/fuzztest/containershashmapkeys_fuzzer/BUILD.gn @@ -19,7 +19,7 @@ import("//build/ohos.gni") ##################################fuzztest##################################### ohos_fuzztest("ContainersHashMapKeysFuzzTest") { - module_out_path = "arkcompiler/ets_runtime" + module_out_path = fuzz_test_output_path fuzz_config_file = "//arkcompiler/ets_runtime/test/fuzztest/containershashmapkeys_fuzzer" diff --git a/test/fuzztest/containershashmapremove_fuzzer/BUILD.gn b/test/fuzztest/containershashmapremove_fuzzer/BUILD.gn index d9c0043bb2..a74d12dbb5 100644 --- a/test/fuzztest/containershashmapremove_fuzzer/BUILD.gn +++ b/test/fuzztest/containershashmapremove_fuzzer/BUILD.gn @@ -19,7 +19,7 @@ import("//build/ohos.gni") ##################################fuzztest##################################### ohos_fuzztest("ContainersHashMapRemoveFuzzTest") { - module_out_path = "arkcompiler/ets_runtime" + module_out_path = fuzz_test_output_path fuzz_config_file = "//arkcompiler/ets_runtime/test/fuzztest/containershashmapremove_fuzzer" diff --git a/test/fuzztest/containershashmapreplace_fuzzer/BUILD.gn b/test/fuzztest/containershashmapreplace_fuzzer/BUILD.gn index 5fee3d0646..5ce0851723 100644 --- a/test/fuzztest/containershashmapreplace_fuzzer/BUILD.gn +++ b/test/fuzztest/containershashmapreplace_fuzzer/BUILD.gn @@ -19,7 +19,7 @@ import("//build/ohos.gni") ##################################fuzztest##################################### ohos_fuzztest("ContainersHashMapReplaceFuzzTest") { - module_out_path = "arkcompiler/ets_runtime" + module_out_path = fuzz_test_output_path fuzz_config_file = "//arkcompiler/ets_runtime/test/fuzztest/containershashmapreplace_fuzzer" diff --git a/test/fuzztest/containershashmapset_fuzzer/BUILD.gn b/test/fuzztest/containershashmapset_fuzzer/BUILD.gn index 923b9fda33..3f07140582 100644 --- a/test/fuzztest/containershashmapset_fuzzer/BUILD.gn +++ b/test/fuzztest/containershashmapset_fuzzer/BUILD.gn @@ -19,7 +19,7 @@ import("//build/ohos.gni") ##################################fuzztest##################################### ohos_fuzztest("ContainersHashMapSetFuzzTest") { - module_out_path = "arkcompiler/ets_runtime" + module_out_path = fuzz_test_output_path fuzz_config_file = "//arkcompiler/ets_runtime/test/fuzztest/containershashmapset_fuzzer" diff --git a/test/fuzztest/containershashmapsetall_fuzzer/BUILD.gn b/test/fuzztest/containershashmapsetall_fuzzer/BUILD.gn index 6eebba493d..ef485b9984 100644 --- a/test/fuzztest/containershashmapsetall_fuzzer/BUILD.gn +++ b/test/fuzztest/containershashmapsetall_fuzzer/BUILD.gn @@ -19,7 +19,7 @@ import("//build/ohos.gni") ##################################fuzztest##################################### ohos_fuzztest("ContainersHashMapSetAllFuzzTest") { - module_out_path = "arkcompiler/ets_runtime" + module_out_path = fuzz_test_output_path fuzz_config_file = "//arkcompiler/ets_runtime/test/fuzztest/containershashmapsetall_fuzzer" diff --git a/test/fuzztest/containershashmapvalues_fuzzer/BUILD.gn b/test/fuzztest/containershashmapvalues_fuzzer/BUILD.gn index c64f1a7057..4feea04603 100644 --- a/test/fuzztest/containershashmapvalues_fuzzer/BUILD.gn +++ b/test/fuzztest/containershashmapvalues_fuzzer/BUILD.gn @@ -19,7 +19,7 @@ import("//build/ohos.gni") ##################################fuzztest##################################### ohos_fuzztest("ContainersHashMapValuesFuzzTest") { - module_out_path = "arkcompiler/ets_runtime" + module_out_path = fuzz_test_output_path fuzz_config_file = "//arkcompiler/ets_runtime/test/fuzztest/containershashmapvalues_fuzzer" diff --git a/test/fuzztest/containershashsetadd_fuzzer/BUILD.gn b/test/fuzztest/containershashsetadd_fuzzer/BUILD.gn index 75314cf1ea..3eac685ef6 100644 --- a/test/fuzztest/containershashsetadd_fuzzer/BUILD.gn +++ b/test/fuzztest/containershashsetadd_fuzzer/BUILD.gn @@ -19,7 +19,7 @@ import("//build/ohos.gni") ##################################fuzztest##################################### ohos_fuzztest("ContainersHashSetAddFuzzTest") { - module_out_path = "arkcompiler/ets_runtime" + module_out_path = fuzz_test_output_path fuzz_config_file = "//arkcompiler/ets_runtime/test/fuzztest/containershashsetadd_fuzzer" diff --git a/test/fuzztest/containershashsetclear_fuzzer/BUILD.gn b/test/fuzztest/containershashsetclear_fuzzer/BUILD.gn index 5fbb9ba23e..581acbb528 100644 --- a/test/fuzztest/containershashsetclear_fuzzer/BUILD.gn +++ b/test/fuzztest/containershashsetclear_fuzzer/BUILD.gn @@ -19,7 +19,7 @@ import("//build/ohos.gni") ##################################fuzztest##################################### ohos_fuzztest("ContainersHashSetClearFuzzTest") { - module_out_path = "arkcompiler/ets_runtime" + module_out_path = fuzz_test_output_path fuzz_config_file = "//arkcompiler/ets_runtime/test/fuzztest/containershashsetclear_fuzzer" diff --git a/test/fuzztest/containershashsetconstructor_fuzzer/BUILD.gn b/test/fuzztest/containershashsetconstructor_fuzzer/BUILD.gn index 1d370128f6..647098cb57 100644 --- a/test/fuzztest/containershashsetconstructor_fuzzer/BUILD.gn +++ b/test/fuzztest/containershashsetconstructor_fuzzer/BUILD.gn @@ -19,7 +19,7 @@ import("//build/ohos.gni") ##################################fuzztest##################################### ohos_fuzztest("ContainersHashSetConstructorFuzzTest") { - module_out_path = "arkcompiler/ets_runtime" + module_out_path = fuzz_test_output_path fuzz_config_file = "//arkcompiler/ets_runtime/test/fuzztest/containershashsetconstructor_fuzzer" diff --git a/test/fuzztest/containershashsetentries_fuzzer/BUILD.gn b/test/fuzztest/containershashsetentries_fuzzer/BUILD.gn index 939b5103fd..1c0d3a501a 100644 --- a/test/fuzztest/containershashsetentries_fuzzer/BUILD.gn +++ b/test/fuzztest/containershashsetentries_fuzzer/BUILD.gn @@ -19,7 +19,7 @@ import("//build/ohos.gni") ##################################fuzztest##################################### ohos_fuzztest("ContainersHashSetEntriesFuzzTest") { - module_out_path = "arkcompiler/ets_runtime" + module_out_path = fuzz_test_output_path fuzz_config_file = "//arkcompiler/ets_runtime/test/fuzztest/containershashsetentries_fuzzer" diff --git a/test/fuzztest/containershashsetforeach_fuzzer/BUILD.gn b/test/fuzztest/containershashsetforeach_fuzzer/BUILD.gn index ad148185f9..bcad0ddd4c 100644 --- a/test/fuzztest/containershashsetforeach_fuzzer/BUILD.gn +++ b/test/fuzztest/containershashsetforeach_fuzzer/BUILD.gn @@ -19,7 +19,7 @@ import("//build/ohos.gni") ##################################fuzztest##################################### ohos_fuzztest("ContainersHashSetForEachFuzzTest") { - module_out_path = "arkcompiler/ets_runtime" + module_out_path = fuzz_test_output_path fuzz_config_file = "//arkcompiler/ets_runtime/test/fuzztest/containershashsetforeach_fuzzer" diff --git a/test/fuzztest/containershashsetgetlength_fuzzer/BUILD.gn b/test/fuzztest/containershashsetgetlength_fuzzer/BUILD.gn index 6884596661..f8ac25228b 100644 --- a/test/fuzztest/containershashsetgetlength_fuzzer/BUILD.gn +++ b/test/fuzztest/containershashsetgetlength_fuzzer/BUILD.gn @@ -19,7 +19,7 @@ import("//build/ohos.gni") ##################################fuzztest##################################### ohos_fuzztest("ContainersHashSetGetLengthFuzzTest") { - module_out_path = "arkcompiler/ets_runtime" + module_out_path = fuzz_test_output_path fuzz_config_file = "//arkcompiler/ets_runtime/test/fuzztest/containershashsetgetlength_fuzzer" diff --git a/test/fuzztest/containershashsethas_fuzzer/BUILD.gn b/test/fuzztest/containershashsethas_fuzzer/BUILD.gn index b6958314e5..0bfab20588 100644 --- a/test/fuzztest/containershashsethas_fuzzer/BUILD.gn +++ b/test/fuzztest/containershashsethas_fuzzer/BUILD.gn @@ -19,7 +19,7 @@ import("//build/ohos.gni") ##################################fuzztest##################################### ohos_fuzztest("ContainersHashSetHasFuzzTest") { - module_out_path = "arkcompiler/ets_runtime" + module_out_path = fuzz_test_output_path fuzz_config_file = "//arkcompiler/ets_runtime/test/fuzztest/containershashsethas_fuzzer" diff --git a/test/fuzztest/containershashsetisempty_fuzzer/BUILD.gn b/test/fuzztest/containershashsetisempty_fuzzer/BUILD.gn index addb9fba6e..1d1ca104e2 100644 --- a/test/fuzztest/containershashsetisempty_fuzzer/BUILD.gn +++ b/test/fuzztest/containershashsetisempty_fuzzer/BUILD.gn @@ -19,7 +19,7 @@ import("//build/ohos.gni") ##################################fuzztest##################################### ohos_fuzztest("ContainersHashSetIsEmptyFuzzTest") { - module_out_path = "arkcompiler/ets_runtime" + module_out_path = fuzz_test_output_path fuzz_config_file = "//arkcompiler/ets_runtime/test/fuzztest/containershashsetisempty_fuzzer" diff --git a/test/fuzztest/containershashsetremove_fuzzer/BUILD.gn b/test/fuzztest/containershashsetremove_fuzzer/BUILD.gn index 359ca9c07f..114ebfe1c1 100644 --- a/test/fuzztest/containershashsetremove_fuzzer/BUILD.gn +++ b/test/fuzztest/containershashsetremove_fuzzer/BUILD.gn @@ -19,7 +19,7 @@ import("//build/ohos.gni") ##################################fuzztest##################################### ohos_fuzztest("ContainersHashSetRemoveFuzzTest") { - module_out_path = "arkcompiler/ets_runtime" + module_out_path = fuzz_test_output_path fuzz_config_file = "//arkcompiler/ets_runtime/test/fuzztest/containershashsetremove_fuzzer" diff --git a/test/fuzztest/containershashsetvalues_fuzzer/BUILD.gn b/test/fuzztest/containershashsetvalues_fuzzer/BUILD.gn index b00f6bc9e2..375f5dc003 100644 --- a/test/fuzztest/containershashsetvalues_fuzzer/BUILD.gn +++ b/test/fuzztest/containershashsetvalues_fuzzer/BUILD.gn @@ -19,7 +19,7 @@ import("//build/ohos.gni") ##################################fuzztest##################################### ohos_fuzztest("ContainersHashSetValuesFuzzTest") { - module_out_path = "arkcompiler/ets_runtime" + module_out_path = fuzz_test_output_path fuzz_config_file = "//arkcompiler/ets_runtime/test/fuzztest/containershashsetvalues_fuzzer" diff --git a/test/fuzztest/containerslightweightmap_fuzzer/BUILD.gn b/test/fuzztest/containerslightweightmap_fuzzer/BUILD.gn index 0164080cea..7187bc0379 100644 --- a/test/fuzztest/containerslightweightmap_fuzzer/BUILD.gn +++ b/test/fuzztest/containerslightweightmap_fuzzer/BUILD.gn @@ -19,7 +19,7 @@ import("//build/ohos.gni") ##################################fuzztest##################################### ohos_fuzztest("ContainersLightWeightMapFuzzTest") { - module_out_path = "arkcompiler/ets_runtime" + module_out_path = fuzz_test_output_path fuzz_config_file = "//arkcompiler/ets_runtime/test/fuzztest/containerslightweightmap_fuzzer" diff --git a/test/fuzztest/containerslightweightmapat_fuzzer/BUILD.gn b/test/fuzztest/containerslightweightmapat_fuzzer/BUILD.gn index 4c29e5fd12..9ea5bc8905 100644 --- a/test/fuzztest/containerslightweightmapat_fuzzer/BUILD.gn +++ b/test/fuzztest/containerslightweightmapat_fuzzer/BUILD.gn @@ -19,7 +19,7 @@ import("//build/ohos.gni") ##################################fuzztest##################################### ohos_fuzztest("ContainersLightWeightMapAtFuzzTest") { - module_out_path = "arkcompiler/ets_runtime" + module_out_path = fuzz_test_output_path fuzz_config_file = "//arkcompiler/ets_runtime/test/fuzztest/containerslightweightmapat_fuzzer" diff --git a/test/fuzztest/containerslightweightmapclear_fuzzer/BUILD.gn b/test/fuzztest/containerslightweightmapclear_fuzzer/BUILD.gn index a7284df9b0..1fb2125ec5 100644 --- a/test/fuzztest/containerslightweightmapclear_fuzzer/BUILD.gn +++ b/test/fuzztest/containerslightweightmapclear_fuzzer/BUILD.gn @@ -19,7 +19,7 @@ import("//build/ohos.gni") ##################################fuzztest##################################### ohos_fuzztest("ContainersLightWeightMapClearFuzzTest") { - module_out_path = "arkcompiler/ets_runtime" + module_out_path = fuzz_test_output_path fuzz_config_file = "//arkcompiler/ets_runtime/test/fuzztest/containerslightweightmapclear_fuzzer" diff --git a/test/fuzztest/containerslightweightmapentries_fuzzer/BUILD.gn b/test/fuzztest/containerslightweightmapentries_fuzzer/BUILD.gn index 6f9ccac8db..1a30bb604d 100644 --- a/test/fuzztest/containerslightweightmapentries_fuzzer/BUILD.gn +++ b/test/fuzztest/containerslightweightmapentries_fuzzer/BUILD.gn @@ -19,7 +19,7 @@ import("//build/ohos.gni") ##################################fuzztest##################################### ohos_fuzztest("ContainersLightWeightMapEntriesFuzzTest") { - module_out_path = "arkcompiler/ets_runtime" + module_out_path = fuzz_test_output_path fuzz_config_file = "//arkcompiler/ets_runtime/test/fuzztest/containerslightweightmapentries_fuzzer" diff --git a/test/fuzztest/containerslightweightmapforeach_fuzzer/BUILD.gn b/test/fuzztest/containerslightweightmapforeach_fuzzer/BUILD.gn index 5819474c8a..7851a48b11 100644 --- a/test/fuzztest/containerslightweightmapforeach_fuzzer/BUILD.gn +++ b/test/fuzztest/containerslightweightmapforeach_fuzzer/BUILD.gn @@ -19,7 +19,7 @@ import("//build/ohos.gni") ##################################fuzztest##################################### ohos_fuzztest("ContainersLightWeightMapForEachFuzzTest") { - module_out_path = "arkcompiler/ets_runtime" + module_out_path = fuzz_test_output_path fuzz_config_file = "//arkcompiler/ets_runtime/test/fuzztest/containerslightweightmapforeach_fuzzer" diff --git a/test/fuzztest/containerslightweightmaphasall_fuzzer/BUILD.gn b/test/fuzztest/containerslightweightmaphasall_fuzzer/BUILD.gn index 6dfb1d04c9..2779a7a117 100644 --- a/test/fuzztest/containerslightweightmaphasall_fuzzer/BUILD.gn +++ b/test/fuzztest/containerslightweightmaphasall_fuzzer/BUILD.gn @@ -19,7 +19,7 @@ import("//build/ohos.gni") ##################################fuzztest##################################### ohos_fuzztest("ContainersLightWeightMapHasAllFuzzTest") { - module_out_path = "arkcompiler/ets_runtime" + module_out_path = fuzz_test_output_path fuzz_config_file = "//arkcompiler/ets_runtime/test/fuzztest/containerslightweightmaphasall_fuzzer" diff --git a/test/fuzztest/containerslightweightmapisempty_fuzzer/BUILD.gn b/test/fuzztest/containerslightweightmapisempty_fuzzer/BUILD.gn index 749a67d57f..1b3dca235d 100644 --- a/test/fuzztest/containerslightweightmapisempty_fuzzer/BUILD.gn +++ b/test/fuzztest/containerslightweightmapisempty_fuzzer/BUILD.gn @@ -19,7 +19,7 @@ import("//build/ohos.gni") ##################################fuzztest##################################### ohos_fuzztest("ContainersLightWeightMapIsEmptyFuzzTest") { - module_out_path = "arkcompiler/ets_runtime" + module_out_path = fuzz_test_output_path fuzz_config_file = "//arkcompiler/ets_runtime/test/fuzztest/containerslightweightmapisempty_fuzzer" diff --git a/test/fuzztest/containerslightweightmapkeys_fuzzer/BUILD.gn b/test/fuzztest/containerslightweightmapkeys_fuzzer/BUILD.gn index d0450c9a41..6b5d0e931a 100644 --- a/test/fuzztest/containerslightweightmapkeys_fuzzer/BUILD.gn +++ b/test/fuzztest/containerslightweightmapkeys_fuzzer/BUILD.gn @@ -19,7 +19,7 @@ import("//build/ohos.gni") ##################################fuzztest##################################### ohos_fuzztest("ContainersLightWeightMapKeysFuzzTest") { - module_out_path = "arkcompiler/ets_runtime" + module_out_path = fuzz_test_output_path fuzz_config_file = "//arkcompiler/ets_runtime/test/fuzztest/containerslightweightmapkeys_fuzzer" diff --git a/test/fuzztest/containerslightweightmaplength_fuzzer/BUILD.gn b/test/fuzztest/containerslightweightmaplength_fuzzer/BUILD.gn index 00983e33ec..f51acac010 100644 --- a/test/fuzztest/containerslightweightmaplength_fuzzer/BUILD.gn +++ b/test/fuzztest/containerslightweightmaplength_fuzzer/BUILD.gn @@ -19,7 +19,7 @@ import("//build/ohos.gni") ##################################fuzztest##################################### ohos_fuzztest("ContainersLightWeightMapLengthFuzzTest") { - module_out_path = "arkcompiler/ets_runtime" + module_out_path = fuzz_test_output_path fuzz_config_file = "//arkcompiler/ets_runtime/test/fuzztest/containerslightweightmaplength_fuzzer" diff --git a/test/fuzztest/containerslightweightmapremove_fuzzer/BUILD.gn b/test/fuzztest/containerslightweightmapremove_fuzzer/BUILD.gn index 7c53516341..f941f6682d 100644 --- a/test/fuzztest/containerslightweightmapremove_fuzzer/BUILD.gn +++ b/test/fuzztest/containerslightweightmapremove_fuzzer/BUILD.gn @@ -19,7 +19,7 @@ import("//build/ohos.gni") ##################################fuzztest##################################### ohos_fuzztest("ContainersLightWeightMapRemoveFuzzTest") { - module_out_path = "arkcompiler/ets_runtime" + module_out_path = fuzz_test_output_path fuzz_config_file = "//arkcompiler/ets_runtime/test/fuzztest/containerslightweightmapremove_fuzzer" diff --git a/test/fuzztest/containerslightweightmapsetall_fuzzer/BUILD.gn b/test/fuzztest/containerslightweightmapsetall_fuzzer/BUILD.gn index f7f7a12cdd..f3c85abf43 100644 --- a/test/fuzztest/containerslightweightmapsetall_fuzzer/BUILD.gn +++ b/test/fuzztest/containerslightweightmapsetall_fuzzer/BUILD.gn @@ -19,7 +19,7 @@ import("//build/ohos.gni") ##################################fuzztest##################################### ohos_fuzztest("ContainersLightWeightMapSetAllFuzzTest") { - module_out_path = "arkcompiler/ets_runtime" + module_out_path = fuzz_test_output_path fuzz_config_file = "//arkcompiler/ets_runtime/test/fuzztest/containerslightweightmapsetall_fuzzer" diff --git a/test/fuzztest/containerslightweightmapsetandget_fuzzer/BUILD.gn b/test/fuzztest/containerslightweightmapsetandget_fuzzer/BUILD.gn index 771f04ef8e..d61b57dc4c 100644 --- a/test/fuzztest/containerslightweightmapsetandget_fuzzer/BUILD.gn +++ b/test/fuzztest/containerslightweightmapsetandget_fuzzer/BUILD.gn @@ -19,7 +19,7 @@ import("//build/ohos.gni") ##################################fuzztest##################################### ohos_fuzztest("ContainersLightWeightMapSetAndGetFuzzTest") { - module_out_path = "arkcompiler/ets_runtime" + module_out_path = fuzz_test_output_path fuzz_config_file = "//arkcompiler/ets_runtime/test/fuzztest/containerslightweightmapsetandget_fuzzer" diff --git a/test/fuzztest/containerslightweightmaptostring_fuzzer/BUILD.gn b/test/fuzztest/containerslightweightmaptostring_fuzzer/BUILD.gn index b99dd8ec4e..dfe6f244f8 100644 --- a/test/fuzztest/containerslightweightmaptostring_fuzzer/BUILD.gn +++ b/test/fuzztest/containerslightweightmaptostring_fuzzer/BUILD.gn @@ -19,7 +19,7 @@ import("//build/ohos.gni") ##################################fuzztest##################################### ohos_fuzztest("ContainersLightWeightMapToStringFuzzTest") { - module_out_path = "arkcompiler/ets_runtime" + module_out_path = fuzz_test_output_path fuzz_config_file = "//arkcompiler/ets_runtime/test/fuzztest/containerslightweightmaptostring_fuzzer" diff --git a/test/fuzztest/containerslightweightmapvalues_fuzzer/BUILD.gn b/test/fuzztest/containerslightweightmapvalues_fuzzer/BUILD.gn index c4c8e84ca5..83d10371c6 100644 --- a/test/fuzztest/containerslightweightmapvalues_fuzzer/BUILD.gn +++ b/test/fuzztest/containerslightweightmapvalues_fuzzer/BUILD.gn @@ -19,7 +19,7 @@ import("//build/ohos.gni") ##################################fuzztest##################################### ohos_fuzztest("ContainersLightWeightMapValuesFuzzTest") { - module_out_path = "arkcompiler/ets_runtime" + module_out_path = fuzz_test_output_path fuzz_config_file = "//arkcompiler/ets_runtime/test/fuzztest/containerslightweightmapvalues_fuzzer" diff --git a/test/fuzztest/containerslightweightset_fuzzer/BUILD.gn b/test/fuzztest/containerslightweightset_fuzzer/BUILD.gn index 00cdaf4556..90bf53bae8 100644 --- a/test/fuzztest/containerslightweightset_fuzzer/BUILD.gn +++ b/test/fuzztest/containerslightweightset_fuzzer/BUILD.gn @@ -19,7 +19,7 @@ import("//build/ohos.gni") ##################################fuzztest##################################### ohos_fuzztest("ContainersLightWeightSetFuzzTest") { - module_out_path = "arkcompiler/ets_runtime" + module_out_path = fuzz_test_output_path fuzz_config_file = "//arkcompiler/ets_runtime/test/fuzztest/containerslightweightset_fuzzer" diff --git a/test/fuzztest/containerslightweightsetadd_fuzzer/BUILD.gn b/test/fuzztest/containerslightweightsetadd_fuzzer/BUILD.gn index c7833c7f2b..fe1323761e 100644 --- a/test/fuzztest/containerslightweightsetadd_fuzzer/BUILD.gn +++ b/test/fuzztest/containerslightweightsetadd_fuzzer/BUILD.gn @@ -19,7 +19,7 @@ import("//build/ohos.gni") ##################################fuzztest##################################### ohos_fuzztest("ContainersLightWeightSetAddFuzzTest") { - module_out_path = "arkcompiler/ets_runtime" + module_out_path = fuzz_test_output_path fuzz_config_file = "//arkcompiler/ets_runtime/test/fuzztest/containerslightweightsetadd_fuzzer" diff --git a/test/fuzztest/containerslightweightsetaddall_fuzzer/BUILD.gn b/test/fuzztest/containerslightweightsetaddall_fuzzer/BUILD.gn index 5253f36ee3..b086219f78 100644 --- a/test/fuzztest/containerslightweightsetaddall_fuzzer/BUILD.gn +++ b/test/fuzztest/containerslightweightsetaddall_fuzzer/BUILD.gn @@ -19,7 +19,7 @@ import("//build/ohos.gni") ##################################fuzztest##################################### ohos_fuzztest("ContainersLightWeightSetAddAllFuzzTest") { - module_out_path = "arkcompiler/ets_runtime" + module_out_path = fuzz_test_output_path fuzz_config_file = "//arkcompiler/ets_runtime/test/fuzztest/containerslightweightsetaddall_fuzzer" diff --git a/test/fuzztest/containerslightweightsetclear_fuzzer/BUILD.gn b/test/fuzztest/containerslightweightsetclear_fuzzer/BUILD.gn index 71b298d5f1..4801d4df2d 100644 --- a/test/fuzztest/containerslightweightsetclear_fuzzer/BUILD.gn +++ b/test/fuzztest/containerslightweightsetclear_fuzzer/BUILD.gn @@ -19,7 +19,7 @@ import("//build/ohos.gni") ##################################fuzztest##################################### ohos_fuzztest("ContainersLightWeightSetClearFuzzTest") { - module_out_path = "arkcompiler/ets_runtime" + module_out_path = fuzz_test_output_path fuzz_config_file = "//arkcompiler/ets_runtime/test/fuzztest/containerslightweightsetclear_fuzzer" diff --git a/test/fuzztest/containerslightweightsetentries_fuzzer/BUILD.gn b/test/fuzztest/containerslightweightsetentries_fuzzer/BUILD.gn index 6a960fedff..ec19b60395 100644 --- a/test/fuzztest/containerslightweightsetentries_fuzzer/BUILD.gn +++ b/test/fuzztest/containerslightweightsetentries_fuzzer/BUILD.gn @@ -19,7 +19,7 @@ import("//build/ohos.gni") ##################################fuzztest##################################### ohos_fuzztest("ContainersLightWeightSetEntriesFuzzTest") { - module_out_path = "arkcompiler/ets_runtime" + module_out_path = fuzz_test_output_path fuzz_config_file = "//arkcompiler/ets_runtime/test/fuzztest/containerslightweightsetentries_fuzzer" diff --git a/test/fuzztest/containerslightweightsetequal_fuzzer/BUILD.gn b/test/fuzztest/containerslightweightsetequal_fuzzer/BUILD.gn index 7b2989b2bb..8cdb3e11b1 100644 --- a/test/fuzztest/containerslightweightsetequal_fuzzer/BUILD.gn +++ b/test/fuzztest/containerslightweightsetequal_fuzzer/BUILD.gn @@ -19,7 +19,7 @@ import("//build/ohos.gni") ##################################fuzztest##################################### ohos_fuzztest("ContainersLightWeightSetEqualFuzzTest") { - module_out_path = "arkcompiler/ets_runtime" + module_out_path = fuzz_test_output_path fuzz_config_file = "//arkcompiler/ets_runtime/test/fuzztest/containerslightweightsetequal_fuzzer" diff --git a/test/fuzztest/containerslightweightsetforeach_fuzzer/BUILD.gn b/test/fuzztest/containerslightweightsetforeach_fuzzer/BUILD.gn index 9ea1a479c0..5cd0e05163 100644 --- a/test/fuzztest/containerslightweightsetforeach_fuzzer/BUILD.gn +++ b/test/fuzztest/containerslightweightsetforeach_fuzzer/BUILD.gn @@ -19,7 +19,7 @@ import("//build/ohos.gni") ##################################fuzztest##################################### ohos_fuzztest("ContainersLightWeightSetForeachFuzzTest") { - module_out_path = "arkcompiler/ets_runtime" + module_out_path = fuzz_test_output_path fuzz_config_file = "//arkcompiler/ets_runtime/test/fuzztest/containerslightweightsetforeach_fuzzer" diff --git a/test/fuzztest/containerslightweightsetgetindexof_fuzzer/BUILD.gn b/test/fuzztest/containerslightweightsetgetindexof_fuzzer/BUILD.gn index d73b9a5f19..75d3036861 100644 --- a/test/fuzztest/containerslightweightsetgetindexof_fuzzer/BUILD.gn +++ b/test/fuzztest/containerslightweightsetgetindexof_fuzzer/BUILD.gn @@ -19,7 +19,7 @@ import("//build/ohos.gni") ##################################fuzztest##################################### ohos_fuzztest("ContainersLightWeightSetGetIndexOfFuzzTest") { - module_out_path = "arkcompiler/ets_runtime" + module_out_path = fuzz_test_output_path fuzz_config_file = "//arkcompiler/ets_runtime/test/fuzztest/containerslightweightsetgetindexof_fuzzer" diff --git a/test/fuzztest/containerslightweightsetgetiteratorobj_fuzzer/BUILD.gn b/test/fuzztest/containerslightweightsetgetiteratorobj_fuzzer/BUILD.gn index 00125fc48d..a2e69351cf 100644 --- a/test/fuzztest/containerslightweightsetgetiteratorobj_fuzzer/BUILD.gn +++ b/test/fuzztest/containerslightweightsetgetiteratorobj_fuzzer/BUILD.gn @@ -19,7 +19,7 @@ import("//build/ohos.gni") ##################################fuzztest##################################### ohos_fuzztest("ContainersLightWeightSetGetIteratorObjFuzzTest") { - module_out_path = "arkcompiler/ets_runtime" + module_out_path = fuzz_test_output_path fuzz_config_file = "//arkcompiler/ets_runtime/test/fuzztest/containerslightweightsetgetiteratorobj_fuzzer" diff --git a/test/fuzztest/containerslightweightsetgetsize_fuzzer/BUILD.gn b/test/fuzztest/containerslightweightsetgetsize_fuzzer/BUILD.gn index 30a2fe3d32..9353fec7e7 100644 --- a/test/fuzztest/containerslightweightsetgetsize_fuzzer/BUILD.gn +++ b/test/fuzztest/containerslightweightsetgetsize_fuzzer/BUILD.gn @@ -19,7 +19,7 @@ import("//build/ohos.gni") ##################################fuzztest##################################### ohos_fuzztest("ContainersLightWeightSetGetSizeFuzzTest") { - module_out_path = "arkcompiler/ets_runtime" + module_out_path = fuzz_test_output_path fuzz_config_file = "//arkcompiler/ets_runtime/test/fuzztest/containerslightweightsetgetsize_fuzzer" diff --git a/test/fuzztest/containerslightweightsetgetvalueat_fuzzer/BUILD.gn b/test/fuzztest/containerslightweightsetgetvalueat_fuzzer/BUILD.gn index 0a6d91ab76..f1b205cc58 100644 --- a/test/fuzztest/containerslightweightsetgetvalueat_fuzzer/BUILD.gn +++ b/test/fuzztest/containerslightweightsetgetvalueat_fuzzer/BUILD.gn @@ -19,7 +19,7 @@ import("//build/ohos.gni") ##################################fuzztest##################################### ohos_fuzztest("ContainersLightWeightSetGetValueAtFuzzTest") { - module_out_path = "arkcompiler/ets_runtime" + module_out_path = fuzz_test_output_path fuzz_config_file = "//arkcompiler/ets_runtime/test/fuzztest/containerslightweightsetgetvalueat_fuzzer" diff --git a/test/fuzztest/containerslightweightsethas_fuzzer/BUILD.gn b/test/fuzztest/containerslightweightsethas_fuzzer/BUILD.gn index f8ebb4d603..6043b99611 100644 --- a/test/fuzztest/containerslightweightsethas_fuzzer/BUILD.gn +++ b/test/fuzztest/containerslightweightsethas_fuzzer/BUILD.gn @@ -19,7 +19,7 @@ import("//build/ohos.gni") ##################################fuzztest##################################### ohos_fuzztest("ContainersLightWeightSetHasFuzzTest") { - module_out_path = "arkcompiler/ets_runtime" + module_out_path = fuzz_test_output_path fuzz_config_file = "//arkcompiler/ets_runtime/test/fuzztest/containerslightweightsethas_fuzzer" diff --git a/test/fuzztest/containerslightweightsethasall_fuzzer/BUILD.gn b/test/fuzztest/containerslightweightsethasall_fuzzer/BUILD.gn index 23e436ed30..18c5304cdc 100644 --- a/test/fuzztest/containerslightweightsethasall_fuzzer/BUILD.gn +++ b/test/fuzztest/containerslightweightsethasall_fuzzer/BUILD.gn @@ -19,7 +19,7 @@ import("//build/ohos.gni") ##################################fuzztest##################################### ohos_fuzztest("ContainersLightWeightSetHasAllFuzzTest") { - module_out_path = "arkcompiler/ets_runtime" + module_out_path = fuzz_test_output_path fuzz_config_file = "//arkcompiler/ets_runtime/test/fuzztest/containerslightweightsethasall_fuzzer" diff --git a/test/fuzztest/containerslightweightsethashash_fuzzer/BUILD.gn b/test/fuzztest/containerslightweightsethashash_fuzzer/BUILD.gn index 90cc844384..3bee1f711e 100644 --- a/test/fuzztest/containerslightweightsethashash_fuzzer/BUILD.gn +++ b/test/fuzztest/containerslightweightsethashash_fuzzer/BUILD.gn @@ -19,7 +19,7 @@ import("//build/ohos.gni") ##################################fuzztest##################################### ohos_fuzztest("ContainersLightWeightSetHasHashFuzzTest") { - module_out_path = "arkcompiler/ets_runtime" + module_out_path = fuzz_test_output_path fuzz_config_file = "//arkcompiler/ets_runtime/test/fuzztest/containerslightweightsethashash_fuzzer" diff --git a/test/fuzztest/containerslightweightsetisempty_fuzzer/BUILD.gn b/test/fuzztest/containerslightweightsetisempty_fuzzer/BUILD.gn index 6f66326500..bfefa4e8a7 100644 --- a/test/fuzztest/containerslightweightsetisempty_fuzzer/BUILD.gn +++ b/test/fuzztest/containerslightweightsetisempty_fuzzer/BUILD.gn @@ -19,7 +19,7 @@ import("//build/ohos.gni") ##################################fuzztest##################################### ohos_fuzztest("ContainersLightWeightSetIsEmptyFuzzTest") { - module_out_path = "arkcompiler/ets_runtime" + module_out_path = fuzz_test_output_path fuzz_config_file = "//arkcompiler/ets_runtime/test/fuzztest/containerslightweightsetisempty_fuzzer" diff --git a/test/fuzztest/containerslightweightsetremove_fuzzer/BUILD.gn b/test/fuzztest/containerslightweightsetremove_fuzzer/BUILD.gn index 562ca1e2da..cb65c91f49 100644 --- a/test/fuzztest/containerslightweightsetremove_fuzzer/BUILD.gn +++ b/test/fuzztest/containerslightweightsetremove_fuzzer/BUILD.gn @@ -19,7 +19,7 @@ import("//build/ohos.gni") ##################################fuzztest##################################### ohos_fuzztest("ContainersLightWeightSetRemoveFuzzTest") { - module_out_path = "arkcompiler/ets_runtime" + module_out_path = fuzz_test_output_path fuzz_config_file = "//arkcompiler/ets_runtime/test/fuzztest/containerslightweightsetremove_fuzzer" diff --git a/test/fuzztest/containerslightweightsettoarray_fuzzer/BUILD.gn b/test/fuzztest/containerslightweightsettoarray_fuzzer/BUILD.gn index cf2deb19a5..f3e9801e13 100644 --- a/test/fuzztest/containerslightweightsettoarray_fuzzer/BUILD.gn +++ b/test/fuzztest/containerslightweightsettoarray_fuzzer/BUILD.gn @@ -19,7 +19,7 @@ import("//build/ohos.gni") ##################################fuzztest##################################### ohos_fuzztest("ContainersLightWeightSetToArrayFuzzTest") { - module_out_path = "arkcompiler/ets_runtime" + module_out_path = fuzz_test_output_path fuzz_config_file = "//arkcompiler/ets_runtime/test/fuzztest/containerslightweightsettoarray_fuzzer" diff --git a/test/fuzztest/containerslightweightsettostring_fuzzer/BUILD.gn b/test/fuzztest/containerslightweightsettostring_fuzzer/BUILD.gn index 93a480292b..63ce0aab91 100644 --- a/test/fuzztest/containerslightweightsettostring_fuzzer/BUILD.gn +++ b/test/fuzztest/containerslightweightsettostring_fuzzer/BUILD.gn @@ -19,7 +19,7 @@ import("//build/ohos.gni") ##################################fuzztest##################################### ohos_fuzztest("ContainersLightWeightSetToStringFuzzTest") { - module_out_path = "arkcompiler/ets_runtime" + module_out_path = fuzz_test_output_path fuzz_config_file = "//arkcompiler/ets_runtime/test/fuzztest/containerslightweightsettostring_fuzzer" diff --git a/test/fuzztest/containerslightweightsetvalues_fuzzer/BUILD.gn b/test/fuzztest/containerslightweightsetvalues_fuzzer/BUILD.gn index 81b70df0b6..b3db145ad7 100644 --- a/test/fuzztest/containerslightweightsetvalues_fuzzer/BUILD.gn +++ b/test/fuzztest/containerslightweightsetvalues_fuzzer/BUILD.gn @@ -19,7 +19,7 @@ import("//build/ohos.gni") ##################################fuzztest##################################### ohos_fuzztest("ContainersLightWeightSetValuesFuzzTest") { - module_out_path = "arkcompiler/ets_runtime" + module_out_path = fuzz_test_output_path fuzz_config_file = "//arkcompiler/ets_runtime/test/fuzztest/containerslightweightsetvalues_fuzzer" diff --git a/test/fuzztest/containerslinkedlistadd_fuzzer/BUILD.gn b/test/fuzztest/containerslinkedlistadd_fuzzer/BUILD.gn index 5479404467..6ce73dba1c 100644 --- a/test/fuzztest/containerslinkedlistadd_fuzzer/BUILD.gn +++ b/test/fuzztest/containerslinkedlistadd_fuzzer/BUILD.gn @@ -19,7 +19,7 @@ import("//build/ohos.gni") ##################################fuzztest##################################### ohos_fuzztest("ContainersLinkedListAddFuzzTest") { - module_out_path = "arkcompiler/ets_runtime" + module_out_path = fuzz_test_output_path fuzz_config_file = "//arkcompiler/ets_runtime/test/fuzztest/containerslinkedlistadd_fuzzer" diff --git a/test/fuzztest/containerslinkedlistaddfirst_fuzzer/BUILD.gn b/test/fuzztest/containerslinkedlistaddfirst_fuzzer/BUILD.gn index ec902904eb..1bc4f214f4 100644 --- a/test/fuzztest/containerslinkedlistaddfirst_fuzzer/BUILD.gn +++ b/test/fuzztest/containerslinkedlistaddfirst_fuzzer/BUILD.gn @@ -19,7 +19,7 @@ import("//build/ohos.gni") ##################################fuzztest##################################### ohos_fuzztest("ContainersLinkedListAddFirstFuzzTest") { - module_out_path = "arkcompiler/ets_runtime" + module_out_path = fuzz_test_output_path fuzz_config_file = "//arkcompiler/ets_runtime/test/fuzztest/containerslinkedlistaddfirst_fuzzer" diff --git a/test/fuzztest/containerslinkedlistclear_fuzzer/BUILD.gn b/test/fuzztest/containerslinkedlistclear_fuzzer/BUILD.gn index 395007f385..6a915ff701 100644 --- a/test/fuzztest/containerslinkedlistclear_fuzzer/BUILD.gn +++ b/test/fuzztest/containerslinkedlistclear_fuzzer/BUILD.gn @@ -19,7 +19,7 @@ import("//build/ohos.gni") ##################################fuzztest##################################### ohos_fuzztest("ContainersLinkedListClearFuzzTest") { - module_out_path = "arkcompiler/ets_runtime" + module_out_path = fuzz_test_output_path fuzz_config_file = "//arkcompiler/ets_runtime/test/fuzztest/containerslinkedlistclear_fuzzer" diff --git a/test/fuzztest/containerslinkedlistclone_fuzzer/BUILD.gn b/test/fuzztest/containerslinkedlistclone_fuzzer/BUILD.gn index 61e009b507..31a812b658 100644 --- a/test/fuzztest/containerslinkedlistclone_fuzzer/BUILD.gn +++ b/test/fuzztest/containerslinkedlistclone_fuzzer/BUILD.gn @@ -19,7 +19,7 @@ import("//build/ohos.gni") ##################################fuzztest##################################### ohos_fuzztest("ContainersLinkedListCloneFuzzTest") { - module_out_path = "arkcompiler/ets_runtime" + module_out_path = fuzz_test_output_path fuzz_config_file = "//arkcompiler/ets_runtime/test/fuzztest/containerslinkedlistclone_fuzzer" diff --git a/test/fuzztest/containerslinkedlistconverttoarray_fuzzer/BUILD.gn b/test/fuzztest/containerslinkedlistconverttoarray_fuzzer/BUILD.gn index 8fafc91dfd..f79ee4ee17 100644 --- a/test/fuzztest/containerslinkedlistconverttoarray_fuzzer/BUILD.gn +++ b/test/fuzztest/containerslinkedlistconverttoarray_fuzzer/BUILD.gn @@ -19,7 +19,7 @@ import("//build/ohos.gni") ##################################fuzztest##################################### ohos_fuzztest("ContainersLinkedListConvertToArrayFuzzTest") { - module_out_path = "arkcompiler/ets_runtime" + module_out_path = fuzz_test_output_path fuzz_config_file = "//arkcompiler/ets_runtime/test/fuzztest/containerslinkedlistconverttoarray_fuzzer" diff --git a/test/fuzztest/containerslinkedlistforeach_fuzzer/BUILD.gn b/test/fuzztest/containerslinkedlistforeach_fuzzer/BUILD.gn index 0c091e7335..ce7c5b1ec2 100644 --- a/test/fuzztest/containerslinkedlistforeach_fuzzer/BUILD.gn +++ b/test/fuzztest/containerslinkedlistforeach_fuzzer/BUILD.gn @@ -19,7 +19,7 @@ import("//build/ohos.gni") ##################################fuzztest##################################### ohos_fuzztest("ContainersLinkedListForEachFuzzTest") { - module_out_path = "arkcompiler/ets_runtime" + module_out_path = fuzz_test_output_path fuzz_config_file = "//arkcompiler/ets_runtime/test/fuzztest/containerslinkedlistforeach_fuzzer" diff --git a/test/fuzztest/containerslinkedlistget_fuzzer/BUILD.gn b/test/fuzztest/containerslinkedlistget_fuzzer/BUILD.gn index b36d077b06..eb035048ce 100644 --- a/test/fuzztest/containerslinkedlistget_fuzzer/BUILD.gn +++ b/test/fuzztest/containerslinkedlistget_fuzzer/BUILD.gn @@ -19,7 +19,7 @@ import("//build/ohos.gni") ##################################fuzztest##################################### ohos_fuzztest("ContainersLinkedListGetFuzzTest") { - module_out_path = "arkcompiler/ets_runtime" + module_out_path = fuzz_test_output_path fuzz_config_file = "//arkcompiler/ets_runtime/test/fuzztest/containerslinkedlistget_fuzzer" diff --git a/test/fuzztest/containerslinkedlistgetfirst_fuzzer/BUILD.gn b/test/fuzztest/containerslinkedlistgetfirst_fuzzer/BUILD.gn index 211664cd3a..bef2dae21e 100644 --- a/test/fuzztest/containerslinkedlistgetfirst_fuzzer/BUILD.gn +++ b/test/fuzztest/containerslinkedlistgetfirst_fuzzer/BUILD.gn @@ -19,7 +19,7 @@ import("//build/ohos.gni") ##################################fuzztest##################################### ohos_fuzztest("ContainersLinkedListGetFirstFuzzTest") { - module_out_path = "arkcompiler/ets_runtime" + module_out_path = fuzz_test_output_path fuzz_config_file = "//arkcompiler/ets_runtime/test/fuzztest/containerslinkedlistgetfirst_fuzzer" diff --git a/test/fuzztest/containerslinkedlistgetindexof_fuzzer/BUILD.gn b/test/fuzztest/containerslinkedlistgetindexof_fuzzer/BUILD.gn index 6827d23975..2b290b2e11 100644 --- a/test/fuzztest/containerslinkedlistgetindexof_fuzzer/BUILD.gn +++ b/test/fuzztest/containerslinkedlistgetindexof_fuzzer/BUILD.gn @@ -19,7 +19,7 @@ import("//build/ohos.gni") ##################################fuzztest##################################### ohos_fuzztest("ContainersLinkedListGetIndexOfFuzzTest") { - module_out_path = "arkcompiler/ets_runtime" + module_out_path = fuzz_test_output_path fuzz_config_file = "//arkcompiler/ets_runtime/test/fuzztest/containerslinkedlistgetindexof_fuzzer" diff --git a/test/fuzztest/containerslinkedlistgetiteratorobj_fuzzer/BUILD.gn b/test/fuzztest/containerslinkedlistgetiteratorobj_fuzzer/BUILD.gn index 9a6894c76e..c57fb5efa1 100644 --- a/test/fuzztest/containerslinkedlistgetiteratorobj_fuzzer/BUILD.gn +++ b/test/fuzztest/containerslinkedlistgetiteratorobj_fuzzer/BUILD.gn @@ -19,7 +19,7 @@ import("//build/ohos.gni") ##################################fuzztest##################################### ohos_fuzztest("ContainersLinkedListGetIteratorObjFuzzTest") { - module_out_path = "arkcompiler/ets_runtime" + module_out_path = fuzz_test_output_path fuzz_config_file = "//arkcompiler/ets_runtime/test/fuzztest/containerslinkedlistgetiteratorobj_fuzzer" diff --git a/test/fuzztest/containerslinkedlistgetlast_fuzzer/BUILD.gn b/test/fuzztest/containerslinkedlistgetlast_fuzzer/BUILD.gn index aa48d1a670..8f0cc8cf54 100644 --- a/test/fuzztest/containerslinkedlistgetlast_fuzzer/BUILD.gn +++ b/test/fuzztest/containerslinkedlistgetlast_fuzzer/BUILD.gn @@ -19,7 +19,7 @@ import("//build/ohos.gni") ##################################fuzztest##################################### ohos_fuzztest("ContainersLinkedListGetLastFuzzTest") { - module_out_path = "arkcompiler/ets_runtime" + module_out_path = fuzz_test_output_path fuzz_config_file = "//arkcompiler/ets_runtime/test/fuzztest/containerslinkedlistgetlast_fuzzer" diff --git a/test/fuzztest/containerslinkedlistgetlastindexof_fuzzer/BUILD.gn b/test/fuzztest/containerslinkedlistgetlastindexof_fuzzer/BUILD.gn index ced374ed16..b2bdf99534 100644 --- a/test/fuzztest/containerslinkedlistgetlastindexof_fuzzer/BUILD.gn +++ b/test/fuzztest/containerslinkedlistgetlastindexof_fuzzer/BUILD.gn @@ -19,7 +19,7 @@ import("//build/ohos.gni") ##################################fuzztest##################################### ohos_fuzztest("ContainersLinkedListGetLastIndexOfFuzzTest") { - module_out_path = "arkcompiler/ets_runtime" + module_out_path = fuzz_test_output_path fuzz_config_file = "//arkcompiler/ets_runtime/test/fuzztest/containerslinkedlistgetlastindexof_fuzzer" diff --git a/test/fuzztest/containerslinkedlisthas_fuzzer/BUILD.gn b/test/fuzztest/containerslinkedlisthas_fuzzer/BUILD.gn index 2c76015d4d..e3622dae47 100644 --- a/test/fuzztest/containerslinkedlisthas_fuzzer/BUILD.gn +++ b/test/fuzztest/containerslinkedlisthas_fuzzer/BUILD.gn @@ -19,7 +19,7 @@ import("//build/ohos.gni") ##################################fuzztest##################################### ohos_fuzztest("ContainersLinkedListHasFuzzTest") { - module_out_path = "arkcompiler/ets_runtime" + module_out_path = fuzz_test_output_path fuzz_config_file = "//arkcompiler/ets_runtime/test/fuzztest/containerslinkedlisthas_fuzzer" diff --git a/test/fuzztest/containerslinkedlistinsert_fuzzer/BUILD.gn b/test/fuzztest/containerslinkedlistinsert_fuzzer/BUILD.gn index dfa720307f..328a460b03 100644 --- a/test/fuzztest/containerslinkedlistinsert_fuzzer/BUILD.gn +++ b/test/fuzztest/containerslinkedlistinsert_fuzzer/BUILD.gn @@ -19,7 +19,7 @@ import("//build/ohos.gni") ##################################fuzztest##################################### ohos_fuzztest("ContainersLinkedListInsertFuzzTest") { - module_out_path = "arkcompiler/ets_runtime" + module_out_path = fuzz_test_output_path fuzz_config_file = "//arkcompiler/ets_runtime/test/fuzztest/containerslinkedlistinsert_fuzzer" diff --git a/test/fuzztest/containerslinkedlistlength_fuzzer/BUILD.gn b/test/fuzztest/containerslinkedlistlength_fuzzer/BUILD.gn index 01961104a2..16df3a419d 100644 --- a/test/fuzztest/containerslinkedlistlength_fuzzer/BUILD.gn +++ b/test/fuzztest/containerslinkedlistlength_fuzzer/BUILD.gn @@ -19,7 +19,7 @@ import("//build/ohos.gni") ##################################fuzztest##################################### ohos_fuzztest("ContainersLinkedListLengthFuzzTest") { - module_out_path = "arkcompiler/ets_runtime" + module_out_path = fuzz_test_output_path fuzz_config_file = "//arkcompiler/ets_runtime/test/fuzztest/containerslinkedlistlength_fuzzer" diff --git a/test/fuzztest/containerslinkedlistremove_fuzzer/BUILD.gn b/test/fuzztest/containerslinkedlistremove_fuzzer/BUILD.gn index 1a6695c2f6..42d35e5d8c 100644 --- a/test/fuzztest/containerslinkedlistremove_fuzzer/BUILD.gn +++ b/test/fuzztest/containerslinkedlistremove_fuzzer/BUILD.gn @@ -19,7 +19,7 @@ import("//build/ohos.gni") ##################################fuzztest##################################### ohos_fuzztest("ContainersLinkedListRemoveFuzzTest") { - module_out_path = "arkcompiler/ets_runtime" + module_out_path = fuzz_test_output_path fuzz_config_file = "//arkcompiler/ets_runtime/test/fuzztest/containerslinkedlistremove_fuzzer" diff --git a/test/fuzztest/containerslinkedlistremovebyindex_fuzzer/BUILD.gn b/test/fuzztest/containerslinkedlistremovebyindex_fuzzer/BUILD.gn index 2766084825..5d541c62ab 100644 --- a/test/fuzztest/containerslinkedlistremovebyindex_fuzzer/BUILD.gn +++ b/test/fuzztest/containerslinkedlistremovebyindex_fuzzer/BUILD.gn @@ -19,7 +19,7 @@ import("//build/ohos.gni") ##################################fuzztest##################################### ohos_fuzztest("ContainersLinkedListRemoveByIndexFuzzTest") { - module_out_path = "arkcompiler/ets_runtime" + module_out_path = fuzz_test_output_path fuzz_config_file = "//arkcompiler/ets_runtime/test/fuzztest/containerslinkedlistremovebyindex_fuzzer" diff --git a/test/fuzztest/containerslinkedlistremovefirst_fuzzer/BUILD.gn b/test/fuzztest/containerslinkedlistremovefirst_fuzzer/BUILD.gn index d727892bf9..2bb89b7b89 100644 --- a/test/fuzztest/containerslinkedlistremovefirst_fuzzer/BUILD.gn +++ b/test/fuzztest/containerslinkedlistremovefirst_fuzzer/BUILD.gn @@ -19,7 +19,7 @@ import("//build/ohos.gni") ##################################fuzztest##################################### ohos_fuzztest("ContainersLinkedListRemoveFirstFuzzTest") { - module_out_path = "arkcompiler/ets_runtime" + module_out_path = fuzz_test_output_path fuzz_config_file = "//arkcompiler/ets_runtime/test/fuzztest/containerslinkedlistremovefirst_fuzzer" diff --git a/test/fuzztest/containerslinkedlistremovefirstfound_fuzzer/BUILD.gn b/test/fuzztest/containerslinkedlistremovefirstfound_fuzzer/BUILD.gn index b834ced618..da0f937407 100644 --- a/test/fuzztest/containerslinkedlistremovefirstfound_fuzzer/BUILD.gn +++ b/test/fuzztest/containerslinkedlistremovefirstfound_fuzzer/BUILD.gn @@ -19,7 +19,7 @@ import("//build/ohos.gni") ##################################fuzztest##################################### ohos_fuzztest("ContainersLinkedListRemoveFirstFoundFuzzTest") { - module_out_path = "arkcompiler/ets_runtime" + module_out_path = fuzz_test_output_path fuzz_config_file = "//arkcompiler/ets_runtime/test/fuzztest/containerslinkedlistremovefirstfound_fuzzer" diff --git a/test/fuzztest/containerslinkedlistremovelast_fuzzer/BUILD.gn b/test/fuzztest/containerslinkedlistremovelast_fuzzer/BUILD.gn index ad199b7d7d..0c4ffda924 100644 --- a/test/fuzztest/containerslinkedlistremovelast_fuzzer/BUILD.gn +++ b/test/fuzztest/containerslinkedlistremovelast_fuzzer/BUILD.gn @@ -19,7 +19,7 @@ import("//build/ohos.gni") ##################################fuzztest##################################### ohos_fuzztest("ContainersLinkedListRemoveLastFuzzTest") { - module_out_path = "arkcompiler/ets_runtime" + module_out_path = fuzz_test_output_path fuzz_config_file = "//arkcompiler/ets_runtime/test/fuzztest/containerslinkedlistremovelast_fuzzer" diff --git a/test/fuzztest/containerslinkedlistremovelastfound_fuzzer/BUILD.gn b/test/fuzztest/containerslinkedlistremovelastfound_fuzzer/BUILD.gn index 6aca6e3763..e54670c1fe 100644 --- a/test/fuzztest/containerslinkedlistremovelastfound_fuzzer/BUILD.gn +++ b/test/fuzztest/containerslinkedlistremovelastfound_fuzzer/BUILD.gn @@ -19,7 +19,7 @@ import("//build/ohos.gni") ##################################fuzztest##################################### ohos_fuzztest("ContainersLinkedListRemoveLastFoundFuzzTest") { - module_out_path = "arkcompiler/ets_runtime" + module_out_path = fuzz_test_output_path fuzz_config_file = "//arkcompiler/ets_runtime/test/fuzztest/containerslinkedlistremovelastfound_fuzzer" diff --git a/test/fuzztest/containerslinkedlistset_fuzzer/BUILD.gn b/test/fuzztest/containerslinkedlistset_fuzzer/BUILD.gn index 29d92cfc73..caa2328b7a 100644 --- a/test/fuzztest/containerslinkedlistset_fuzzer/BUILD.gn +++ b/test/fuzztest/containerslinkedlistset_fuzzer/BUILD.gn @@ -19,7 +19,7 @@ import("//build/ohos.gni") ##################################fuzztest##################################### ohos_fuzztest("ContainersLinkedListSetFuzzTest") { - module_out_path = "arkcompiler/ets_runtime" + module_out_path = fuzz_test_output_path fuzz_config_file = "//arkcompiler/ets_runtime/test/fuzztest/containerslinkedlistset_fuzzer" diff --git a/test/fuzztest/containerslistadd_fuzzer/BUILD.gn b/test/fuzztest/containerslistadd_fuzzer/BUILD.gn index beeeac8eac..5b71dcbde5 100644 --- a/test/fuzztest/containerslistadd_fuzzer/BUILD.gn +++ b/test/fuzztest/containerslistadd_fuzzer/BUILD.gn @@ -19,7 +19,7 @@ import("//build/ohos.gni") ##################################fuzztest##################################### ohos_fuzztest("ContainerslistAddFuzzTest") { - module_out_path = "arkcompiler/ets_runtime" + module_out_path = fuzz_test_output_path fuzz_config_file = "//arkcompiler/ets_runtime/test/fuzztest/containerslistadd_fuzzer" diff --git a/test/fuzztest/containerslistclear_fuzzer/BUILD.gn b/test/fuzztest/containerslistclear_fuzzer/BUILD.gn index ced485bde8..2db4f61076 100644 --- a/test/fuzztest/containerslistclear_fuzzer/BUILD.gn +++ b/test/fuzztest/containerslistclear_fuzzer/BUILD.gn @@ -19,7 +19,7 @@ import("//build/ohos.gni") ##################################fuzztest##################################### ohos_fuzztest("ContainerslistClearFuzzTest") { - module_out_path = "arkcompiler/ets_runtime" + module_out_path = fuzz_test_output_path fuzz_config_file = "//arkcompiler/ets_runtime/test/fuzztest/containerslistclear_fuzzer" diff --git a/test/fuzztest/containerslistconstructor_fuzzer/BUILD.gn b/test/fuzztest/containerslistconstructor_fuzzer/BUILD.gn index 2a4419f4af..3731468484 100644 --- a/test/fuzztest/containerslistconstructor_fuzzer/BUILD.gn +++ b/test/fuzztest/containerslistconstructor_fuzzer/BUILD.gn @@ -19,7 +19,7 @@ import("//build/ohos.gni") ##################################fuzztest##################################### ohos_fuzztest("ContainerslistConStructorFuzzTest") { - module_out_path = "arkcompiler/ets_runtime" + module_out_path = fuzz_test_output_path fuzz_config_file = "//arkcompiler/ets_runtime/test/fuzztest/containerslistconstructor_fuzzer" diff --git a/test/fuzztest/containerslistconverttoarray_fuzzer/BUILD.gn b/test/fuzztest/containerslistconverttoarray_fuzzer/BUILD.gn index d33dfdbbd2..b2c774e688 100644 --- a/test/fuzztest/containerslistconverttoarray_fuzzer/BUILD.gn +++ b/test/fuzztest/containerslistconverttoarray_fuzzer/BUILD.gn @@ -19,7 +19,7 @@ import("//build/ohos.gni") ##################################fuzztest##################################### ohos_fuzztest("ContainerslistConvertToArrayFuzzTest") { - module_out_path = "arkcompiler/ets_runtime" + module_out_path = fuzz_test_output_path fuzz_config_file = "//arkcompiler/ets_runtime/test/fuzztest/containerslistconverttoarray_fuzzer" diff --git a/test/fuzztest/containerslistequal_fuzzer/BUILD.gn b/test/fuzztest/containerslistequal_fuzzer/BUILD.gn index 46e6192518..139fd4ab99 100644 --- a/test/fuzztest/containerslistequal_fuzzer/BUILD.gn +++ b/test/fuzztest/containerslistequal_fuzzer/BUILD.gn @@ -19,7 +19,7 @@ import("//build/ohos.gni") ##################################fuzztest##################################### ohos_fuzztest("ContainerslistEqualFuzzTest") { - module_out_path = "arkcompiler/ets_runtime" + module_out_path = fuzz_test_output_path fuzz_config_file = "//arkcompiler/ets_runtime/test/fuzztest/containerslistequal_fuzzer" diff --git a/test/fuzztest/containerslistforeach_fuzzer/BUILD.gn b/test/fuzztest/containerslistforeach_fuzzer/BUILD.gn index d02a45ea2f..088bc74866 100644 --- a/test/fuzztest/containerslistforeach_fuzzer/BUILD.gn +++ b/test/fuzztest/containerslistforeach_fuzzer/BUILD.gn @@ -19,7 +19,7 @@ import("//build/ohos.gni") ##################################fuzztest##################################### ohos_fuzztest("ContainerslistForEachFuzzTest") { - module_out_path = "arkcompiler/ets_runtime" + module_out_path = fuzz_test_output_path fuzz_config_file = "//arkcompiler/ets_runtime/test/fuzztest/containerslistforeach_fuzzer" diff --git a/test/fuzztest/containerslistget_fuzzer/BUILD.gn b/test/fuzztest/containerslistget_fuzzer/BUILD.gn index 70e1ce0b90..9860d0b654 100644 --- a/test/fuzztest/containerslistget_fuzzer/BUILD.gn +++ b/test/fuzztest/containerslistget_fuzzer/BUILD.gn @@ -19,7 +19,7 @@ import("//build/ohos.gni") ##################################fuzztest##################################### ohos_fuzztest("ContainerslistGetFuzzTest") { - module_out_path = "arkcompiler/ets_runtime" + module_out_path = fuzz_test_output_path fuzz_config_file = "//arkcompiler/ets_runtime/test/fuzztest/containerslistget_fuzzer" diff --git a/test/fuzztest/containerslistgetindexof_fuzzer/BUILD.gn b/test/fuzztest/containerslistgetindexof_fuzzer/BUILD.gn index 7205e6f965..51bd953b44 100644 --- a/test/fuzztest/containerslistgetindexof_fuzzer/BUILD.gn +++ b/test/fuzztest/containerslistgetindexof_fuzzer/BUILD.gn @@ -19,7 +19,7 @@ import("//build/ohos.gni") ##################################fuzztest##################################### ohos_fuzztest("ContainerslistGetIndexOfFuzzTest") { - module_out_path = "arkcompiler/ets_runtime" + module_out_path = fuzz_test_output_path fuzz_config_file = "//arkcompiler/ets_runtime/test/fuzztest/containerslistgetindexof_fuzzer" diff --git a/test/fuzztest/containerslistgetiteratorobj_fuzzer/BUILD.gn b/test/fuzztest/containerslistgetiteratorobj_fuzzer/BUILD.gn index 4c8340af34..59a1ffc174 100644 --- a/test/fuzztest/containerslistgetiteratorobj_fuzzer/BUILD.gn +++ b/test/fuzztest/containerslistgetiteratorobj_fuzzer/BUILD.gn @@ -19,7 +19,7 @@ import("//build/ohos.gni") ##################################fuzztest##################################### ohos_fuzztest("ContainerslistGetIteratorObjFuzzTest") { - module_out_path = "arkcompiler/ets_runtime" + module_out_path = fuzz_test_output_path fuzz_config_file = "//arkcompiler/ets_runtime/test/fuzztest/containerslistgetiteratorobj_fuzzer" diff --git a/test/fuzztest/containerslistgetlastindexof_fuzzer/BUILD.gn b/test/fuzztest/containerslistgetlastindexof_fuzzer/BUILD.gn index 976646e12e..978a93ad4d 100644 --- a/test/fuzztest/containerslistgetlastindexof_fuzzer/BUILD.gn +++ b/test/fuzztest/containerslistgetlastindexof_fuzzer/BUILD.gn @@ -19,7 +19,7 @@ import("//build/ohos.gni") ##################################fuzztest##################################### ohos_fuzztest("ContainerslistGetLastIndexOfFuzzTest") { - module_out_path = "arkcompiler/ets_runtime" + module_out_path = fuzz_test_output_path fuzz_config_file = "//arkcompiler/ets_runtime/test/fuzztest/containerslistgetlastindexof_fuzzer" diff --git a/test/fuzztest/containerslistgetsublist_fuzzer/BUILD.gn b/test/fuzztest/containerslistgetsublist_fuzzer/BUILD.gn index 036cbeb209..0cf3f829f3 100644 --- a/test/fuzztest/containerslistgetsublist_fuzzer/BUILD.gn +++ b/test/fuzztest/containerslistgetsublist_fuzzer/BUILD.gn @@ -19,7 +19,7 @@ import("//build/ohos.gni") ##################################fuzztest##################################### ohos_fuzztest("ContainerslistGetSubListFuzzTest") { - module_out_path = "arkcompiler/ets_runtime" + module_out_path = fuzz_test_output_path fuzz_config_file = "//arkcompiler/ets_runtime/test/fuzztest/containerslistgetsublist_fuzzer" diff --git a/test/fuzztest/containerslisthas_fuzzer/BUILD.gn b/test/fuzztest/containerslisthas_fuzzer/BUILD.gn index 155f93df37..4b60401219 100644 --- a/test/fuzztest/containerslisthas_fuzzer/BUILD.gn +++ b/test/fuzztest/containerslisthas_fuzzer/BUILD.gn @@ -19,7 +19,7 @@ import("//build/ohos.gni") ##################################fuzztest##################################### ohos_fuzztest("ContainerslistHasFuzzTest") { - module_out_path = "arkcompiler/ets_runtime" + module_out_path = fuzz_test_output_path fuzz_config_file = "//arkcompiler/ets_runtime/test/fuzztest/containerslisthas_fuzzer" diff --git a/test/fuzztest/containerslistinsert_fuzzer/BUILD.gn b/test/fuzztest/containerslistinsert_fuzzer/BUILD.gn index ea75a1e18e..bcd735ed9f 100644 --- a/test/fuzztest/containerslistinsert_fuzzer/BUILD.gn +++ b/test/fuzztest/containerslistinsert_fuzzer/BUILD.gn @@ -19,7 +19,7 @@ import("//build/ohos.gni") ##################################fuzztest##################################### ohos_fuzztest("ContainerslistInsertFuzzTest") { - module_out_path = "arkcompiler/ets_runtime" + module_out_path = fuzz_test_output_path fuzz_config_file = "//arkcompiler/ets_runtime/test/fuzztest/containerslistinsert_fuzzer" diff --git a/test/fuzztest/containerslistisempty_fuzzer/BUILD.gn b/test/fuzztest/containerslistisempty_fuzzer/BUILD.gn index f3e8c24c42..2e88ec58b6 100644 --- a/test/fuzztest/containerslistisempty_fuzzer/BUILD.gn +++ b/test/fuzztest/containerslistisempty_fuzzer/BUILD.gn @@ -19,7 +19,7 @@ import("//build/ohos.gni") ##################################fuzztest##################################### ohos_fuzztest("ContainerslistIsemptyFuzzTest") { - module_out_path = "arkcompiler/ets_runtime" + module_out_path = fuzz_test_output_path fuzz_config_file = "//arkcompiler/ets_runtime/test/fuzztest/containerslistisempty_fuzzer" diff --git a/test/fuzztest/containerslistlength_fuzzer/BUILD.gn b/test/fuzztest/containerslistlength_fuzzer/BUILD.gn index 42c03f2084..1f314ecb36 100644 --- a/test/fuzztest/containerslistlength_fuzzer/BUILD.gn +++ b/test/fuzztest/containerslistlength_fuzzer/BUILD.gn @@ -19,7 +19,7 @@ import("//build/ohos.gni") ##################################fuzztest##################################### ohos_fuzztest("ContainerslistLengthFuzzTest") { - module_out_path = "arkcompiler/ets_runtime" + module_out_path = fuzz_test_output_path fuzz_config_file = "//arkcompiler/ets_runtime/test/fuzztest/containerslistlength_fuzzer" diff --git a/test/fuzztest/containerslistremove_fuzzer/BUILD.gn b/test/fuzztest/containerslistremove_fuzzer/BUILD.gn index 08f3b6aab1..cf0ec3cb2a 100644 --- a/test/fuzztest/containerslistremove_fuzzer/BUILD.gn +++ b/test/fuzztest/containerslistremove_fuzzer/BUILD.gn @@ -19,7 +19,7 @@ import("//build/ohos.gni") ##################################fuzztest##################################### ohos_fuzztest("ContainerslistRemoveFuzzTest") { - module_out_path = "arkcompiler/ets_runtime" + module_out_path = fuzz_test_output_path fuzz_config_file = "//arkcompiler/ets_runtime/test/fuzztest/containerslistremove_fuzzer" diff --git a/test/fuzztest/containerslistremovebyindex_fuzzer/BUILD.gn b/test/fuzztest/containerslistremovebyindex_fuzzer/BUILD.gn index d5f0202e1b..e2acbb6d65 100644 --- a/test/fuzztest/containerslistremovebyindex_fuzzer/BUILD.gn +++ b/test/fuzztest/containerslistremovebyindex_fuzzer/BUILD.gn @@ -19,7 +19,7 @@ import("//build/ohos.gni") ##################################fuzztest##################################### ohos_fuzztest("ContainerslistRemoveByIndexFuzzTest") { - module_out_path = "arkcompiler/ets_runtime" + module_out_path = fuzz_test_output_path fuzz_config_file = "//arkcompiler/ets_runtime/test/fuzztest/containerslistremovebyindex_fuzzer" diff --git a/test/fuzztest/containerslistset_fuzzer/BUILD.gn b/test/fuzztest/containerslistset_fuzzer/BUILD.gn index 1948251be4..5007827ded 100644 --- a/test/fuzztest/containerslistset_fuzzer/BUILD.gn +++ b/test/fuzztest/containerslistset_fuzzer/BUILD.gn @@ -19,7 +19,7 @@ import("//build/ohos.gni") ##################################fuzztest##################################### ohos_fuzztest("ContainerslistSetFuzzTest") { - module_out_path = "arkcompiler/ets_runtime" + module_out_path = fuzz_test_output_path fuzz_config_file = "//arkcompiler/ets_runtime/test/fuzztest/containerslistset_fuzzer" diff --git a/test/fuzztest/containerslistsort_fuzzer/BUILD.gn b/test/fuzztest/containerslistsort_fuzzer/BUILD.gn index 2f7792eb9f..62b2273331 100644 --- a/test/fuzztest/containerslistsort_fuzzer/BUILD.gn +++ b/test/fuzztest/containerslistsort_fuzzer/BUILD.gn @@ -19,7 +19,7 @@ import("//build/ohos.gni") ##################################fuzztest##################################### ohos_fuzztest("ContainerslistSortFuzzTest") { - module_out_path = "arkcompiler/ets_runtime" + module_out_path = fuzz_test_output_path fuzz_config_file = "//arkcompiler/ets_runtime/test/fuzztest/containerslistsort_fuzzer" diff --git a/test/fuzztest/containersplainarray_fuzzer/BUILD.gn b/test/fuzztest/containersplainarray_fuzzer/BUILD.gn index b1b0a9f47b..b68c04a976 100644 --- a/test/fuzztest/containersplainarray_fuzzer/BUILD.gn +++ b/test/fuzztest/containersplainarray_fuzzer/BUILD.gn @@ -19,7 +19,7 @@ import("//build/ohos.gni") ##################################fuzztest##################################### ohos_fuzztest("ContainersPlainArrayFuzzTest") { - module_out_path = "arkcompiler/ets_runtime" + module_out_path = fuzz_test_output_path fuzz_config_file = "//arkcompiler/ets_runtime/test/fuzztest/containersplainarray_fuzzer" diff --git a/test/fuzztest/containersprivatearraylist_fuzzer/BUILD.gn b/test/fuzztest/containersprivatearraylist_fuzzer/BUILD.gn index 10eba7bdfb..bf0e87f4d2 100644 --- a/test/fuzztest/containersprivatearraylist_fuzzer/BUILD.gn +++ b/test/fuzztest/containersprivatearraylist_fuzzer/BUILD.gn @@ -19,7 +19,7 @@ import("//build/ohos.gni") ##################################fuzztest##################################### ohos_fuzztest("ContainersPrivateArrayListFuzzTest") { - module_out_path = "arkcompiler/ets_runtime" + module_out_path = fuzz_test_output_path fuzz_config_file = "//arkcompiler/ets_runtime/test/fuzztest/containersprivatearraylist_fuzzer" diff --git a/test/fuzztest/containersprivatedeque_fuzzer/BUILD.gn b/test/fuzztest/containersprivatedeque_fuzzer/BUILD.gn index 5d95f50c29..237913dccc 100644 --- a/test/fuzztest/containersprivatedeque_fuzzer/BUILD.gn +++ b/test/fuzztest/containersprivatedeque_fuzzer/BUILD.gn @@ -19,7 +19,7 @@ import("//build/ohos.gni") ##################################fuzztest##################################### ohos_fuzztest("ContainersPrivateDequeFuzzTest") { - module_out_path = "arkcompiler/ets_runtime" + module_out_path = fuzz_test_output_path fuzz_config_file = "//arkcompiler/ets_runtime/test/fuzztest/containersprivatedeque_fuzzer" diff --git a/test/fuzztest/containersprivatehashmap_fuzzer/BUILD.gn b/test/fuzztest/containersprivatehashmap_fuzzer/BUILD.gn index 20e8948f0f..bfd9f45a3a 100644 --- a/test/fuzztest/containersprivatehashmap_fuzzer/BUILD.gn +++ b/test/fuzztest/containersprivatehashmap_fuzzer/BUILD.gn @@ -19,7 +19,7 @@ import("//build/ohos.gni") ##################################fuzztest##################################### ohos_fuzztest("ContainersPrivateHashMapFuzzTest") { - module_out_path = "arkcompiler/ets_runtime" + module_out_path = fuzz_test_output_path fuzz_config_file = "//arkcompiler/ets_runtime/test/fuzztest/containersprivatehashmap_fuzzer" diff --git a/test/fuzztest/containersprivatehashset_fuzzer/BUILD.gn b/test/fuzztest/containersprivatehashset_fuzzer/BUILD.gn index b5d7e556db..8815f919b1 100644 --- a/test/fuzztest/containersprivatehashset_fuzzer/BUILD.gn +++ b/test/fuzztest/containersprivatehashset_fuzzer/BUILD.gn @@ -19,7 +19,7 @@ import("//build/ohos.gni") ##################################fuzztest##################################### ohos_fuzztest("ContainersPrivateHashSetFuzzTest") { - module_out_path = "arkcompiler/ets_runtime" + module_out_path = fuzz_test_output_path fuzz_config_file = "//arkcompiler/ets_runtime/test/fuzztest/containersprivatehashset_fuzzer" diff --git a/test/fuzztest/containersprivatelightweightmap_fuzzer/BUILD.gn b/test/fuzztest/containersprivatelightweightmap_fuzzer/BUILD.gn index 6dc6951ddd..9fbd754e85 100644 --- a/test/fuzztest/containersprivatelightweightmap_fuzzer/BUILD.gn +++ b/test/fuzztest/containersprivatelightweightmap_fuzzer/BUILD.gn @@ -19,7 +19,7 @@ import("//build/ohos.gni") ##################################fuzztest##################################### ohos_fuzztest("ContainersPrivateLightWeightMapFuzzTest") { - module_out_path = "arkcompiler/ets_runtime" + module_out_path = fuzz_test_output_path fuzz_config_file = "//arkcompiler/ets_runtime/test/fuzztest/containersprivatelightweightmap_fuzzer" diff --git a/test/fuzztest/containersprivatelightweightset_fuzzer/BUILD.gn b/test/fuzztest/containersprivatelightweightset_fuzzer/BUILD.gn index aa799ba2aa..e6a6efe961 100644 --- a/test/fuzztest/containersprivatelightweightset_fuzzer/BUILD.gn +++ b/test/fuzztest/containersprivatelightweightset_fuzzer/BUILD.gn @@ -19,7 +19,7 @@ import("//build/ohos.gni") ##################################fuzztest##################################### ohos_fuzztest("ContainersPrivateLightWeightSetFuzzTest") { - module_out_path = "arkcompiler/ets_runtime" + module_out_path = fuzz_test_output_path fuzz_config_file = "//arkcompiler/ets_runtime/test/fuzztest/containersprivatelightweightset_fuzzer" diff --git a/test/fuzztest/containersprivatelinkedlist_fuzzer/BUILD.gn b/test/fuzztest/containersprivatelinkedlist_fuzzer/BUILD.gn index 921465653f..286f0c315a 100644 --- a/test/fuzztest/containersprivatelinkedlist_fuzzer/BUILD.gn +++ b/test/fuzztest/containersprivatelinkedlist_fuzzer/BUILD.gn @@ -19,7 +19,7 @@ import("//build/ohos.gni") ##################################fuzztest##################################### ohos_fuzztest("ContainersPrivateLinkedListFuzzTest") { - module_out_path = "arkcompiler/ets_runtime" + module_out_path = fuzz_test_output_path fuzz_config_file = "//arkcompiler/ets_runtime/test/fuzztest/containersprivatelinkedlist_fuzzer" diff --git a/test/fuzztest/containersprivatelist_fuzzer/BUILD.gn b/test/fuzztest/containersprivatelist_fuzzer/BUILD.gn index fb70611377..4625dd3f99 100644 --- a/test/fuzztest/containersprivatelist_fuzzer/BUILD.gn +++ b/test/fuzztest/containersprivatelist_fuzzer/BUILD.gn @@ -19,7 +19,7 @@ import("//build/ohos.gni") ##################################fuzztest##################################### ohos_fuzztest("ContainersPrivateListFuzzTest") { - module_out_path = "arkcompiler/ets_runtime" + module_out_path = fuzz_test_output_path fuzz_config_file = "//arkcompiler/ets_runtime/test/fuzztest/containersprivatelist_fuzzer" diff --git a/test/fuzztest/containersprivateload_fuzzer/BUILD.gn b/test/fuzztest/containersprivateload_fuzzer/BUILD.gn index 3345b24bcf..bf11cfd547 100644 --- a/test/fuzztest/containersprivateload_fuzzer/BUILD.gn +++ b/test/fuzztest/containersprivateload_fuzzer/BUILD.gn @@ -19,7 +19,7 @@ import("//build/ohos.gni") ##################################fuzztest##################################### ohos_fuzztest("ContainersPrivateLoadFuzzTest") { - module_out_path = "arkcompiler/ets_runtime" + module_out_path = fuzz_test_output_path fuzz_config_file = "//arkcompiler/ets_runtime/test/fuzztest/containersprivateload_fuzzer" diff --git a/test/fuzztest/containersprivateplainarray_fuzzer/BUILD.gn b/test/fuzztest/containersprivateplainarray_fuzzer/BUILD.gn index d63e0c6677..a16409bae8 100644 --- a/test/fuzztest/containersprivateplainarray_fuzzer/BUILD.gn +++ b/test/fuzztest/containersprivateplainarray_fuzzer/BUILD.gn @@ -19,7 +19,7 @@ import("//build/ohos.gni") ##################################fuzztest##################################### ohos_fuzztest("ContainersPrivatePlainArrayFuzzTest") { - module_out_path = "arkcompiler/ets_runtime" + module_out_path = fuzz_test_output_path fuzz_config_file = "//arkcompiler/ets_runtime/test/fuzztest/containersprivateplainarray_fuzzer" diff --git a/test/fuzztest/containersprivatequeue_fuzzer/BUILD.gn b/test/fuzztest/containersprivatequeue_fuzzer/BUILD.gn index f383a19401..3098f2a91d 100644 --- a/test/fuzztest/containersprivatequeue_fuzzer/BUILD.gn +++ b/test/fuzztest/containersprivatequeue_fuzzer/BUILD.gn @@ -19,7 +19,7 @@ import("//build/ohos.gni") ##################################fuzztest##################################### ohos_fuzztest("ContainersPrivateQueueFuzzTest") { - module_out_path = "arkcompiler/ets_runtime" + module_out_path = fuzz_test_output_path fuzz_config_file = "//arkcompiler/ets_runtime/test/fuzztest/containersprivatequeue_fuzzer" diff --git a/test/fuzztest/containersprivatestack_fuzzer/BUILD.gn b/test/fuzztest/containersprivatestack_fuzzer/BUILD.gn index 6b81c3071f..ce619dfca8 100644 --- a/test/fuzztest/containersprivatestack_fuzzer/BUILD.gn +++ b/test/fuzztest/containersprivatestack_fuzzer/BUILD.gn @@ -19,7 +19,7 @@ import("//build/ohos.gni") ##################################fuzztest##################################### ohos_fuzztest("ContainersPrivateStackFuzzTest") { - module_out_path = "arkcompiler/ets_runtime" + module_out_path = fuzz_test_output_path fuzz_config_file = "//arkcompiler/ets_runtime/test/fuzztest/containersprivatestack_fuzzer" diff --git a/test/fuzztest/containersprivatetreemap_fuzzer/BUILD.gn b/test/fuzztest/containersprivatetreemap_fuzzer/BUILD.gn index 10d76684bb..a9d579699f 100644 --- a/test/fuzztest/containersprivatetreemap_fuzzer/BUILD.gn +++ b/test/fuzztest/containersprivatetreemap_fuzzer/BUILD.gn @@ -19,7 +19,7 @@ import("//build/ohos.gni") ##################################fuzztest##################################### ohos_fuzztest("ContainersPrivateTreeMapFuzzTest") { - module_out_path = "arkcompiler/ets_runtime" + module_out_path = fuzz_test_output_path fuzz_config_file = "//arkcompiler/ets_runtime/test/fuzztest/containersprivatetreemap_fuzzer" diff --git a/test/fuzztest/containersprivatetreeset_fuzzer/BUILD.gn b/test/fuzztest/containersprivatetreeset_fuzzer/BUILD.gn index 54a934ac56..f85569a7d5 100644 --- a/test/fuzztest/containersprivatetreeset_fuzzer/BUILD.gn +++ b/test/fuzztest/containersprivatetreeset_fuzzer/BUILD.gn @@ -19,7 +19,7 @@ import("//build/ohos.gni") ##################################fuzztest##################################### ohos_fuzztest("ContainersPrivateTreeSetFuzzTest") { - module_out_path = "arkcompiler/ets_runtime" + module_out_path = fuzz_test_output_path fuzz_config_file = "//arkcompiler/ets_runtime/test/fuzztest/containersprivatetreeset_fuzzer" diff --git a/test/fuzztest/containersprivatevector_fuzzer/BUILD.gn b/test/fuzztest/containersprivatevector_fuzzer/BUILD.gn index 84d37bb979..ebd16ab716 100644 --- a/test/fuzztest/containersprivatevector_fuzzer/BUILD.gn +++ b/test/fuzztest/containersprivatevector_fuzzer/BUILD.gn @@ -19,7 +19,7 @@ import("//build/ohos.gni") ##################################fuzztest##################################### ohos_fuzztest("ContainersPrivateVectorFuzzTest") { - module_out_path = "arkcompiler/ets_runtime" + module_out_path = fuzz_test_output_path fuzz_config_file = "//arkcompiler/ets_runtime/test/fuzztest/containersprivatevector_fuzzer" diff --git a/test/fuzztest/containersqueue_fuzzer/BUILD.gn b/test/fuzztest/containersqueue_fuzzer/BUILD.gn index 8727b35240..2d040005d4 100644 --- a/test/fuzztest/containersqueue_fuzzer/BUILD.gn +++ b/test/fuzztest/containersqueue_fuzzer/BUILD.gn @@ -19,7 +19,7 @@ import("//build/ohos.gni") ##################################fuzztest##################################### ohos_fuzztest("ContainersQueueFuzzTest") { - module_out_path = "arkcompiler/ets_runtime" + module_out_path = fuzz_test_output_path fuzz_config_file = "//arkcompiler/ets_runtime/test/fuzztest/containersqueue_fuzzer" diff --git a/test/fuzztest/containersqueueadd_fuzzer/BUILD.gn b/test/fuzztest/containersqueueadd_fuzzer/BUILD.gn index 1623288de3..c1d1598f76 100644 --- a/test/fuzztest/containersqueueadd_fuzzer/BUILD.gn +++ b/test/fuzztest/containersqueueadd_fuzzer/BUILD.gn @@ -19,7 +19,7 @@ import("//build/ohos.gni") ##################################fuzztest##################################### ohos_fuzztest("ContainersQueueAddFuzzTest") { - module_out_path = "arkcompiler/ets_runtime" + module_out_path = fuzz_test_output_path fuzz_config_file = "//arkcompiler/ets_runtime/test/fuzztest/containersqueueadd_fuzzer" diff --git a/test/fuzztest/containersqueueforeach_fuzzer/BUILD.gn b/test/fuzztest/containersqueueforeach_fuzzer/BUILD.gn index bcdae577c6..8c7e5172cc 100644 --- a/test/fuzztest/containersqueueforeach_fuzzer/BUILD.gn +++ b/test/fuzztest/containersqueueforeach_fuzzer/BUILD.gn @@ -19,7 +19,7 @@ import("//build/ohos.gni") ##################################fuzztest##################################### ohos_fuzztest("ContainersQueueForEachFuzzTest") { - module_out_path = "arkcompiler/ets_runtime" + module_out_path = fuzz_test_output_path fuzz_config_file = "//arkcompiler/ets_runtime/test/fuzztest/containersqueueforeach_fuzzer" diff --git a/test/fuzztest/containersqueuegetfirst_fuzzer/BUILD.gn b/test/fuzztest/containersqueuegetfirst_fuzzer/BUILD.gn index 64baa97152..8e344b931c 100644 --- a/test/fuzztest/containersqueuegetfirst_fuzzer/BUILD.gn +++ b/test/fuzztest/containersqueuegetfirst_fuzzer/BUILD.gn @@ -19,7 +19,7 @@ import("//build/ohos.gni") ##################################fuzztest##################################### ohos_fuzztest("ContainersQueueGetFirstFuzzTest") { - module_out_path = "arkcompiler/ets_runtime" + module_out_path = fuzz_test_output_path fuzz_config_file = "//arkcompiler/ets_runtime/test/fuzztest/containersqueuegetfirst_fuzzer" diff --git a/test/fuzztest/containersqueuegetiteratorobj_fuzzer/BUILD.gn b/test/fuzztest/containersqueuegetiteratorobj_fuzzer/BUILD.gn index 00c7c94f78..5ffe22645b 100644 --- a/test/fuzztest/containersqueuegetiteratorobj_fuzzer/BUILD.gn +++ b/test/fuzztest/containersqueuegetiteratorobj_fuzzer/BUILD.gn @@ -19,7 +19,7 @@ import("//build/ohos.gni") ##################################fuzztest##################################### ohos_fuzztest("ContainersQueueGetIteratorObjFuzzTest") { - module_out_path = "arkcompiler/ets_runtime" + module_out_path = fuzz_test_output_path fuzz_config_file = "//arkcompiler/ets_runtime/test/fuzztest/containersqueuegetiteratorobj_fuzzer" diff --git a/test/fuzztest/containersqueuegetsize_fuzzer/BUILD.gn b/test/fuzztest/containersqueuegetsize_fuzzer/BUILD.gn index ec1ffe4270..7a5f4b88b7 100644 --- a/test/fuzztest/containersqueuegetsize_fuzzer/BUILD.gn +++ b/test/fuzztest/containersqueuegetsize_fuzzer/BUILD.gn @@ -19,7 +19,7 @@ import("//build/ohos.gni") ##################################fuzztest##################################### ohos_fuzztest("ContainersQueueGetSizeFuzzTest") { - module_out_path = "arkcompiler/ets_runtime" + module_out_path = fuzz_test_output_path fuzz_config_file = "//arkcompiler/ets_runtime/test/fuzztest/containersqueuegetsize_fuzzer" diff --git a/test/fuzztest/containersqueuepop_fuzzer/BUILD.gn b/test/fuzztest/containersqueuepop_fuzzer/BUILD.gn index 322cc07844..44ed49e841 100644 --- a/test/fuzztest/containersqueuepop_fuzzer/BUILD.gn +++ b/test/fuzztest/containersqueuepop_fuzzer/BUILD.gn @@ -19,7 +19,7 @@ import("//build/ohos.gni") ##################################fuzztest##################################### ohos_fuzztest("ContainersQueuePopFuzzTest") { - module_out_path = "arkcompiler/ets_runtime" + module_out_path = fuzz_test_output_path fuzz_config_file = "//arkcompiler/ets_runtime/test/fuzztest/containersqueuepop_fuzzer" diff --git a/test/fuzztest/containersstack_fuzzer/BUILD.gn b/test/fuzztest/containersstack_fuzzer/BUILD.gn index 1f4c7ec870..94782e19c0 100644 --- a/test/fuzztest/containersstack_fuzzer/BUILD.gn +++ b/test/fuzztest/containersstack_fuzzer/BUILD.gn @@ -19,7 +19,7 @@ import("//build/ohos.gni") ##################################fuzztest##################################### ohos_fuzztest("ContainersStackFuzzTest") { - module_out_path = "arkcompiler/ets_runtime" + module_out_path = fuzz_test_output_path fuzz_config_file = "//arkcompiler/ets_runtime/test/fuzztest/containersstack_fuzzer" diff --git a/test/fuzztest/containersstackforeach_fuzzer/BUILD.gn b/test/fuzztest/containersstackforeach_fuzzer/BUILD.gn index de07a9b9b3..9808f7f9e3 100644 --- a/test/fuzztest/containersstackforeach_fuzzer/BUILD.gn +++ b/test/fuzztest/containersstackforeach_fuzzer/BUILD.gn @@ -19,7 +19,7 @@ import("//build/ohos.gni") ##################################fuzztest##################################### ohos_fuzztest("ContainersStackForEachFuzzTest") { - module_out_path = "arkcompiler/ets_runtime" + module_out_path = fuzz_test_output_path fuzz_config_file = "//arkcompiler/ets_runtime/test/fuzztest/containersstackforeach_fuzzer" diff --git a/test/fuzztest/containersstackgetlength_fuzzer/BUILD.gn b/test/fuzztest/containersstackgetlength_fuzzer/BUILD.gn index 3320d5c48e..2d9fa03ff6 100644 --- a/test/fuzztest/containersstackgetlength_fuzzer/BUILD.gn +++ b/test/fuzztest/containersstackgetlength_fuzzer/BUILD.gn @@ -19,7 +19,7 @@ import("//build/ohos.gni") ##################################fuzztest##################################### ohos_fuzztest("ContainersStackGetLengthFuzzTest") { - module_out_path = "arkcompiler/ets_runtime" + module_out_path = fuzz_test_output_path fuzz_config_file = "//arkcompiler/ets_runtime/test/fuzztest/containersstackgetlength_fuzzer" diff --git a/test/fuzztest/containersstackisempty_fuzzer/BUILD.gn b/test/fuzztest/containersstackisempty_fuzzer/BUILD.gn index bb54112817..13f608d71c 100644 --- a/test/fuzztest/containersstackisempty_fuzzer/BUILD.gn +++ b/test/fuzztest/containersstackisempty_fuzzer/BUILD.gn @@ -19,7 +19,7 @@ import("//build/ohos.gni") ##################################fuzztest##################################### ohos_fuzztest("ContainersStackIsEmptyFuzzTest") { - module_out_path = "arkcompiler/ets_runtime" + module_out_path = fuzz_test_output_path fuzz_config_file = "//arkcompiler/ets_runtime/test/fuzztest/containersstackisempty_fuzzer" diff --git a/test/fuzztest/containersstackiterator_fuzzer/BUILD.gn b/test/fuzztest/containersstackiterator_fuzzer/BUILD.gn index 6b36bcb0b5..bc292c901e 100644 --- a/test/fuzztest/containersstackiterator_fuzzer/BUILD.gn +++ b/test/fuzztest/containersstackiterator_fuzzer/BUILD.gn @@ -19,7 +19,7 @@ import("//build/ohos.gni") ##################################fuzztest##################################### ohos_fuzztest("ContainersStackIteratorFuzzTest") { - module_out_path = "arkcompiler/ets_runtime" + module_out_path = fuzz_test_output_path fuzz_config_file = "//arkcompiler/ets_runtime/test/fuzztest/containersstackiterator_fuzzer" diff --git a/test/fuzztest/containersstacklocate_fuzzer/BUILD.gn b/test/fuzztest/containersstacklocate_fuzzer/BUILD.gn index f3199afffe..3587d8c105 100644 --- a/test/fuzztest/containersstacklocate_fuzzer/BUILD.gn +++ b/test/fuzztest/containersstacklocate_fuzzer/BUILD.gn @@ -19,7 +19,7 @@ import("//build/ohos.gni") ##################################fuzztest##################################### ohos_fuzztest("ContainersStackLocateFuzzTest") { - module_out_path = "arkcompiler/ets_runtime" + module_out_path = fuzz_test_output_path fuzz_config_file = "//arkcompiler/ets_runtime/test/fuzztest/containersstacklocate_fuzzer" diff --git a/test/fuzztest/containersstackpeek_fuzzer/BUILD.gn b/test/fuzztest/containersstackpeek_fuzzer/BUILD.gn index 670c9afeb7..32963cb929 100644 --- a/test/fuzztest/containersstackpeek_fuzzer/BUILD.gn +++ b/test/fuzztest/containersstackpeek_fuzzer/BUILD.gn @@ -19,7 +19,7 @@ import("//build/ohos.gni") ##################################fuzztest##################################### ohos_fuzztest("ContainersStackPeekFuzzTest") { - module_out_path = "arkcompiler/ets_runtime" + module_out_path = fuzz_test_output_path fuzz_config_file = "//arkcompiler/ets_runtime/test/fuzztest/containersstackpeek_fuzzer" diff --git a/test/fuzztest/containersstackpop_fuzzer/BUILD.gn b/test/fuzztest/containersstackpop_fuzzer/BUILD.gn index b61448067b..4e165a6228 100644 --- a/test/fuzztest/containersstackpop_fuzzer/BUILD.gn +++ b/test/fuzztest/containersstackpop_fuzzer/BUILD.gn @@ -19,7 +19,7 @@ import("//build/ohos.gni") ##################################fuzztest##################################### ohos_fuzztest("ContainersStackPopFuzzTest") { - module_out_path = "arkcompiler/ets_runtime" + module_out_path = fuzz_test_output_path fuzz_config_file = "//arkcompiler/ets_runtime/test/fuzztest/containersstackpop_fuzzer" diff --git a/test/fuzztest/containersstackpush_fuzzer/BUILD.gn b/test/fuzztest/containersstackpush_fuzzer/BUILD.gn index 118cdbb222..b272e0b86b 100644 --- a/test/fuzztest/containersstackpush_fuzzer/BUILD.gn +++ b/test/fuzztest/containersstackpush_fuzzer/BUILD.gn @@ -19,7 +19,7 @@ import("//build/ohos.gni") ##################################fuzztest##################################### ohos_fuzztest("ContainersStackPushFuzzTest") { - module_out_path = "arkcompiler/ets_runtime" + module_out_path = fuzz_test_output_path fuzz_config_file = "//arkcompiler/ets_runtime/test/fuzztest/containersstackpush_fuzzer" diff --git a/test/fuzztest/containerstreemapclear_fuzzer/BUILD.gn b/test/fuzztest/containerstreemapclear_fuzzer/BUILD.gn index 7716dca2a9..83c8f7bf1e 100644 --- a/test/fuzztest/containerstreemapclear_fuzzer/BUILD.gn +++ b/test/fuzztest/containerstreemapclear_fuzzer/BUILD.gn @@ -20,7 +20,7 @@ import("//build/test.gni") ####################################fuzztest################################## ohos_fuzztest("ContainersTreeMapClearFuzzTest") { - module_out_path = "arkcompiler/ets_runtime" + module_out_path = fuzz_test_output_path fuzz_config_file = "//arkcompiler/ets_runtime/test/fuzztest/containerstreemapclear_fuzzer" diff --git a/test/fuzztest/containerstreemapconstructor_fuzzer/BUILD.gn b/test/fuzztest/containerstreemapconstructor_fuzzer/BUILD.gn index f9eb08ca19..cacec67503 100644 --- a/test/fuzztest/containerstreemapconstructor_fuzzer/BUILD.gn +++ b/test/fuzztest/containerstreemapconstructor_fuzzer/BUILD.gn @@ -20,7 +20,7 @@ import("//build/test.gni") ####################################fuzztest################################## ohos_fuzztest("ContainersTreeMapConstructorFuzzTest") { - module_out_path = "arkcompiler/ets_runtime" + module_out_path = fuzz_test_output_path fuzz_config_file = "//arkcompiler/ets_runtime/test/fuzztest/containerstreemapconstructor_fuzzer" diff --git a/test/fuzztest/containerstreemapentries_fuzzer/BUILD.gn b/test/fuzztest/containerstreemapentries_fuzzer/BUILD.gn index 1a7609edf0..80be3d2f0f 100644 --- a/test/fuzztest/containerstreemapentries_fuzzer/BUILD.gn +++ b/test/fuzztest/containerstreemapentries_fuzzer/BUILD.gn @@ -20,7 +20,7 @@ import("//build/test.gni") ####################################fuzztest################################## ohos_fuzztest("ContainersTreeMapEntriesFuzzTest") { - module_out_path = "arkcompiler/ets_runtime" + module_out_path = fuzz_test_output_path fuzz_config_file = "//arkcompiler/ets_runtime/test/fuzztest/containerstreemapentries_fuzzer" diff --git a/test/fuzztest/containerstreemapforeach_fuzzer/BUILD.gn b/test/fuzztest/containerstreemapforeach_fuzzer/BUILD.gn index 28fc7acf93..66dda11121 100644 --- a/test/fuzztest/containerstreemapforeach_fuzzer/BUILD.gn +++ b/test/fuzztest/containerstreemapforeach_fuzzer/BUILD.gn @@ -20,7 +20,7 @@ import("//build/test.gni") ####################################fuzztest################################## ohos_fuzztest("ContainersTreeMapForEachFuzzTest") { - module_out_path = "arkcompiler/ets_runtime" + module_out_path = fuzz_test_output_path fuzz_config_file = "//arkcompiler/ets_runtime/test/fuzztest/containerstreemapforeach_fuzzer" diff --git a/test/fuzztest/containerstreemapget_fuzzer/BUILD.gn b/test/fuzztest/containerstreemapget_fuzzer/BUILD.gn index ddd90ae81a..086e6ef638 100644 --- a/test/fuzztest/containerstreemapget_fuzzer/BUILD.gn +++ b/test/fuzztest/containerstreemapget_fuzzer/BUILD.gn @@ -20,7 +20,7 @@ import("//build/test.gni") ####################################fuzztest################################## ohos_fuzztest("ContainersTreeMapGetFuzzTest") { - module_out_path = "arkcompiler/ets_runtime" + module_out_path = fuzz_test_output_path fuzz_config_file = "//arkcompiler/ets_runtime/test/fuzztest/containerstreemapget_fuzzer" diff --git a/test/fuzztest/containerstreemapgetfirstkey_fuzzer/BUILD.gn b/test/fuzztest/containerstreemapgetfirstkey_fuzzer/BUILD.gn index 288599a2b1..6b85987588 100644 --- a/test/fuzztest/containerstreemapgetfirstkey_fuzzer/BUILD.gn +++ b/test/fuzztest/containerstreemapgetfirstkey_fuzzer/BUILD.gn @@ -20,7 +20,7 @@ import("//build/test.gni") ####################################fuzztest################################## ohos_fuzztest("ContainersTreeMapGetFirstKeyFuzzTest") { - module_out_path = "arkcompiler/ets_runtime" + module_out_path = fuzz_test_output_path fuzz_config_file = "//arkcompiler/ets_runtime/test/fuzztest/containerstreemapgetfirstkey_fuzzer" diff --git a/test/fuzztest/containerstreemapgethigherkey_fuzzer/BUILD.gn b/test/fuzztest/containerstreemapgethigherkey_fuzzer/BUILD.gn index 4dd29d4dec..b57330ba45 100644 --- a/test/fuzztest/containerstreemapgethigherkey_fuzzer/BUILD.gn +++ b/test/fuzztest/containerstreemapgethigherkey_fuzzer/BUILD.gn @@ -20,7 +20,7 @@ import("//build/test.gni") ####################################fuzztest################################## ohos_fuzztest("ContainersTreeMapGetHigherKeyFuzzTest") { - module_out_path = "arkcompiler/ets_runtime" + module_out_path = fuzz_test_output_path fuzz_config_file = "//arkcompiler/ets_runtime/test/fuzztest/containerstreemapgethigherkey_fuzzer" diff --git a/test/fuzztest/containerstreemapgetlastkey_fuzzer/BUILD.gn b/test/fuzztest/containerstreemapgetlastkey_fuzzer/BUILD.gn index 4a6486d5fc..1da0db81e5 100644 --- a/test/fuzztest/containerstreemapgetlastkey_fuzzer/BUILD.gn +++ b/test/fuzztest/containerstreemapgetlastkey_fuzzer/BUILD.gn @@ -20,7 +20,7 @@ import("//build/test.gni") ####################################fuzztest################################## ohos_fuzztest("ContainersTreeMapGetLastKeyFuzzTest") { - module_out_path = "arkcompiler/ets_runtime" + module_out_path = fuzz_test_output_path fuzz_config_file = "//arkcompiler/ets_runtime/test/fuzztest/containerstreemapgetlastkey_fuzzer" diff --git a/test/fuzztest/containerstreemapgetlength_fuzzer/BUILD.gn b/test/fuzztest/containerstreemapgetlength_fuzzer/BUILD.gn index eab8cd185b..c4c4f620ab 100644 --- a/test/fuzztest/containerstreemapgetlength_fuzzer/BUILD.gn +++ b/test/fuzztest/containerstreemapgetlength_fuzzer/BUILD.gn @@ -20,7 +20,7 @@ import("//build/test.gni") ####################################fuzztest################################## ohos_fuzztest("ContainersTreeMapGetLengthFuzzTest") { - module_out_path = "arkcompiler/ets_runtime" + module_out_path = fuzz_test_output_path fuzz_config_file = "//arkcompiler/ets_runtime/test/fuzztest/containerstreemapgetlength_fuzzer" diff --git a/test/fuzztest/containerstreemapgetlowerkey_fuzzer/BUILD.gn b/test/fuzztest/containerstreemapgetlowerkey_fuzzer/BUILD.gn index 30eb6234fe..b8ee44279a 100644 --- a/test/fuzztest/containerstreemapgetlowerkey_fuzzer/BUILD.gn +++ b/test/fuzztest/containerstreemapgetlowerkey_fuzzer/BUILD.gn @@ -20,7 +20,7 @@ import("//build/test.gni") ####################################fuzztest################################## ohos_fuzztest("ContainersTreeMapGetLowerKeyFuzzTest") { - module_out_path = "arkcompiler/ets_runtime" + module_out_path = fuzz_test_output_path fuzz_config_file = "//arkcompiler/ets_runtime/test/fuzztest/containerstreemapgetlowerkey_fuzzer" diff --git a/test/fuzztest/containerstreemaphaskey_fuzzer/BUILD.gn b/test/fuzztest/containerstreemaphaskey_fuzzer/BUILD.gn index 422f619953..97a2b61f49 100644 --- a/test/fuzztest/containerstreemaphaskey_fuzzer/BUILD.gn +++ b/test/fuzztest/containerstreemaphaskey_fuzzer/BUILD.gn @@ -20,7 +20,7 @@ import("//build/test.gni") ####################################fuzztest################################## ohos_fuzztest("ContainersTreeMapHasKeyFuzzTest") { - module_out_path = "arkcompiler/ets_runtime" + module_out_path = fuzz_test_output_path fuzz_config_file = "//arkcompiler/ets_runtime/test/fuzztest/containerstreemaphaskey_fuzzer" diff --git a/test/fuzztest/containerstreemaphasvalue_fuzzer/BUILD.gn b/test/fuzztest/containerstreemaphasvalue_fuzzer/BUILD.gn index c71dcd66f5..49f8793f40 100644 --- a/test/fuzztest/containerstreemaphasvalue_fuzzer/BUILD.gn +++ b/test/fuzztest/containerstreemaphasvalue_fuzzer/BUILD.gn @@ -20,7 +20,7 @@ import("//build/test.gni") ####################################fuzztest################################## ohos_fuzztest("ContainersTreeMapHasValueFuzzTest") { - module_out_path = "arkcompiler/ets_runtime" + module_out_path = fuzz_test_output_path fuzz_config_file = "//arkcompiler/ets_runtime/test/fuzztest/containerstreemaphasvalue_fuzzer" diff --git a/test/fuzztest/containerstreemapisempty_fuzzer/BUILD.gn b/test/fuzztest/containerstreemapisempty_fuzzer/BUILD.gn index 3500ceb948..5e879748d4 100644 --- a/test/fuzztest/containerstreemapisempty_fuzzer/BUILD.gn +++ b/test/fuzztest/containerstreemapisempty_fuzzer/BUILD.gn @@ -20,7 +20,7 @@ import("//build/test.gni") ####################################fuzztest################################## ohos_fuzztest("ContainersTreeMapIsEmptyFuzzTest") { - module_out_path = "arkcompiler/ets_runtime" + module_out_path = fuzz_test_output_path fuzz_config_file = "//arkcompiler/ets_runtime/test/fuzztest/containerstreemapisempty_fuzzer" diff --git a/test/fuzztest/containerstreemapkeys_fuzzer/BUILD.gn b/test/fuzztest/containerstreemapkeys_fuzzer/BUILD.gn index a6d401c816..9be1a665d9 100644 --- a/test/fuzztest/containerstreemapkeys_fuzzer/BUILD.gn +++ b/test/fuzztest/containerstreemapkeys_fuzzer/BUILD.gn @@ -20,7 +20,7 @@ import("//build/test.gni") ####################################fuzztest################################## ohos_fuzztest("ContainersTreeMapKeysFuzzTest") { - module_out_path = "arkcompiler/ets_runtime" + module_out_path = fuzz_test_output_path fuzz_config_file = "//arkcompiler/ets_runtime/test/fuzztest/containerstreemapkeys_fuzzer" diff --git a/test/fuzztest/containerstreemapremove_fuzzer/BUILD.gn b/test/fuzztest/containerstreemapremove_fuzzer/BUILD.gn index 9571dbdb69..d439c95f68 100644 --- a/test/fuzztest/containerstreemapremove_fuzzer/BUILD.gn +++ b/test/fuzztest/containerstreemapremove_fuzzer/BUILD.gn @@ -20,7 +20,7 @@ import("//build/test.gni") ####################################fuzztest################################## ohos_fuzztest("ContainersTreeMapRemoveFuzzTest") { - module_out_path = "arkcompiler/ets_runtime" + module_out_path = fuzz_test_output_path fuzz_config_file = "//arkcompiler/ets_runtime/test/fuzztest/containerstreemapremove_fuzzer" diff --git a/test/fuzztest/containerstreemapreplace_fuzzer/BUILD.gn b/test/fuzztest/containerstreemapreplace_fuzzer/BUILD.gn index af450d6700..d34c479fba 100644 --- a/test/fuzztest/containerstreemapreplace_fuzzer/BUILD.gn +++ b/test/fuzztest/containerstreemapreplace_fuzzer/BUILD.gn @@ -20,7 +20,7 @@ import("//build/test.gni") ####################################fuzztest################################## ohos_fuzztest("ContainersTreeMapReplaceFuzzTest") { - module_out_path = "arkcompiler/ets_runtime" + module_out_path = fuzz_test_output_path fuzz_config_file = "//arkcompiler/ets_runtime/test/fuzztest/containerstreemapreplace_fuzzer" diff --git a/test/fuzztest/containerstreemapset_fuzzer/BUILD.gn b/test/fuzztest/containerstreemapset_fuzzer/BUILD.gn index b6b26adc3a..12f5547770 100644 --- a/test/fuzztest/containerstreemapset_fuzzer/BUILD.gn +++ b/test/fuzztest/containerstreemapset_fuzzer/BUILD.gn @@ -20,7 +20,7 @@ import("//build/test.gni") ####################################fuzztest################################## ohos_fuzztest("ContainersTreeMapSetFuzzTest") { - module_out_path = "arkcompiler/ets_runtime" + module_out_path = fuzz_test_output_path fuzz_config_file = "//arkcompiler/ets_runtime/test/fuzztest/containerstreemapset_fuzzer" diff --git a/test/fuzztest/containerstreemapsetall_fuzzer/BUILD.gn b/test/fuzztest/containerstreemapsetall_fuzzer/BUILD.gn index 54e310deac..9b013dbd86 100644 --- a/test/fuzztest/containerstreemapsetall_fuzzer/BUILD.gn +++ b/test/fuzztest/containerstreemapsetall_fuzzer/BUILD.gn @@ -20,7 +20,7 @@ import("//build/test.gni") ####################################fuzztest################################## ohos_fuzztest("ContainersTreeMapSetAllFuzzTest") { - module_out_path = "arkcompiler/ets_runtime" + module_out_path = fuzz_test_output_path fuzz_config_file = "//arkcompiler/ets_runtime/test/fuzztest/containerstreemapsetall_fuzzer" diff --git a/test/fuzztest/containerstreemapvalues_fuzzer/BUILD.gn b/test/fuzztest/containerstreemapvalues_fuzzer/BUILD.gn index b271ef689d..6c162edbca 100644 --- a/test/fuzztest/containerstreemapvalues_fuzzer/BUILD.gn +++ b/test/fuzztest/containerstreemapvalues_fuzzer/BUILD.gn @@ -20,7 +20,7 @@ import("//build/test.gni") ####################################fuzztest################################## ohos_fuzztest("ContainersTreeMapValuesFuzzTest") { - module_out_path = "arkcompiler/ets_runtime" + module_out_path = fuzz_test_output_path fuzz_config_file = "//arkcompiler/ets_runtime/test/fuzztest/containerstreemapvalues_fuzzer" diff --git a/test/fuzztest/containerstreesetadd_fuzzer/BUILD.gn b/test/fuzztest/containerstreesetadd_fuzzer/BUILD.gn index 43f6dfd76e..9b2b00498b 100644 --- a/test/fuzztest/containerstreesetadd_fuzzer/BUILD.gn +++ b/test/fuzztest/containerstreesetadd_fuzzer/BUILD.gn @@ -20,7 +20,7 @@ import("//build/test.gni") ####################################fuzztest################################## ohos_fuzztest("ContainersTreeSetAddFuzzTest") { - module_out_path = "arkcompiler/ets_runtime" + module_out_path = fuzz_test_output_path fuzz_config_file = "//arkcompiler/ets_runtime/test/fuzztest/containerstreesetadd_fuzzer" diff --git a/test/fuzztest/containerstreesetclear_fuzzer/BUILD.gn b/test/fuzztest/containerstreesetclear_fuzzer/BUILD.gn index 9a90b09530..fcd0636b8e 100644 --- a/test/fuzztest/containerstreesetclear_fuzzer/BUILD.gn +++ b/test/fuzztest/containerstreesetclear_fuzzer/BUILD.gn @@ -20,7 +20,7 @@ import("//build/test.gni") ####################################fuzztest################################## ohos_fuzztest("ContainersTreeSetClearFuzzTest") { - module_out_path = "arkcompiler/ets_runtime" + module_out_path = fuzz_test_output_path fuzz_config_file = "//arkcompiler/ets_runtime/test/fuzztest/containerstreesetclear_fuzzer" diff --git a/test/fuzztest/containerstreesetconstructor_fuzzer/BUILD.gn b/test/fuzztest/containerstreesetconstructor_fuzzer/BUILD.gn index 84409dfb17..968978cd3d 100644 --- a/test/fuzztest/containerstreesetconstructor_fuzzer/BUILD.gn +++ b/test/fuzztest/containerstreesetconstructor_fuzzer/BUILD.gn @@ -20,7 +20,7 @@ import("//build/test.gni") ####################################fuzztest################################## ohos_fuzztest("ContainersTreeSetConstructorFuzzTest") { - module_out_path = "arkcompiler/ets_runtime" + module_out_path = fuzz_test_output_path fuzz_config_file = "//arkcompiler/ets_runtime/test/fuzztest/containerstreesetconstructor_fuzzer" diff --git a/test/fuzztest/containerstreesetentries_fuzzer/BUILD.gn b/test/fuzztest/containerstreesetentries_fuzzer/BUILD.gn index 6f38f1bb9c..e16fbcbaa3 100644 --- a/test/fuzztest/containerstreesetentries_fuzzer/BUILD.gn +++ b/test/fuzztest/containerstreesetentries_fuzzer/BUILD.gn @@ -20,7 +20,7 @@ import("//build/test.gni") ####################################fuzztest################################## ohos_fuzztest("ContainersTreeSetEntriesFuzzTest") { - module_out_path = "arkcompiler/ets_runtime" + module_out_path = fuzz_test_output_path fuzz_config_file = "//arkcompiler/ets_runtime/test/fuzztest/containerstreesetentries_fuzzer" diff --git a/test/fuzztest/containerstreesetforeach_fuzzer/BUILD.gn b/test/fuzztest/containerstreesetforeach_fuzzer/BUILD.gn index 6e812b6553..9541e95048 100644 --- a/test/fuzztest/containerstreesetforeach_fuzzer/BUILD.gn +++ b/test/fuzztest/containerstreesetforeach_fuzzer/BUILD.gn @@ -20,7 +20,7 @@ import("//build/test.gni") ####################################fuzztest################################## ohos_fuzztest("ContainersTreeSetForEachFuzzTest") { - module_out_path = "arkcompiler/ets_runtime" + module_out_path = fuzz_test_output_path fuzz_config_file = "//arkcompiler/ets_runtime/test/fuzztest/containerstreesetforeach_fuzzer" diff --git a/test/fuzztest/containerstreesetgetfirstvalue_fuzzer/BUILD.gn b/test/fuzztest/containerstreesetgetfirstvalue_fuzzer/BUILD.gn index 3f686d0d7b..032cdbbab2 100644 --- a/test/fuzztest/containerstreesetgetfirstvalue_fuzzer/BUILD.gn +++ b/test/fuzztest/containerstreesetgetfirstvalue_fuzzer/BUILD.gn @@ -20,7 +20,7 @@ import("//build/test.gni") ####################################fuzztest################################## ohos_fuzztest("ContainersTreeSetGetFirstValueFuzzTest") { - module_out_path = "arkcompiler/ets_runtime" + module_out_path = fuzz_test_output_path fuzz_config_file = "//arkcompiler/ets_runtime/test/fuzztest/containerstreesetgetfirstvalue_fuzzer" diff --git a/test/fuzztest/containerstreesetgethighervalue_fuzzer/BUILD.gn b/test/fuzztest/containerstreesetgethighervalue_fuzzer/BUILD.gn index 39c1090195..083819105e 100644 --- a/test/fuzztest/containerstreesetgethighervalue_fuzzer/BUILD.gn +++ b/test/fuzztest/containerstreesetgethighervalue_fuzzer/BUILD.gn @@ -20,7 +20,7 @@ import("//build/test.gni") ####################################fuzztest################################## ohos_fuzztest("ContainersTreeSetGetHigherValueFuzzTest") { - module_out_path = "arkcompiler/ets_runtime" + module_out_path = fuzz_test_output_path fuzz_config_file = "//arkcompiler/ets_runtime/test/fuzztest/containerstreesetgethighervalue_fuzzer" diff --git a/test/fuzztest/containerstreesetgetlastvalue_fuzzer/BUILD.gn b/test/fuzztest/containerstreesetgetlastvalue_fuzzer/BUILD.gn index 527669eaee..1bb34a16d4 100644 --- a/test/fuzztest/containerstreesetgetlastvalue_fuzzer/BUILD.gn +++ b/test/fuzztest/containerstreesetgetlastvalue_fuzzer/BUILD.gn @@ -20,7 +20,7 @@ import("//build/test.gni") ####################################fuzztest################################## ohos_fuzztest("ContainersTreeSetGetLastValueFuzzTest") { - module_out_path = "arkcompiler/ets_runtime" + module_out_path = fuzz_test_output_path fuzz_config_file = "//arkcompiler/ets_runtime/test/fuzztest/containerstreesetgetlastvalue_fuzzer" diff --git a/test/fuzztest/containerstreesetgetlength_fuzzer/BUILD.gn b/test/fuzztest/containerstreesetgetlength_fuzzer/BUILD.gn index 86bbe8a0da..d5a0601e51 100644 --- a/test/fuzztest/containerstreesetgetlength_fuzzer/BUILD.gn +++ b/test/fuzztest/containerstreesetgetlength_fuzzer/BUILD.gn @@ -20,7 +20,7 @@ import("//build/test.gni") ####################################fuzztest################################## ohos_fuzztest("ContainersTreeSetGetLengthFuzzTest") { - module_out_path = "arkcompiler/ets_runtime" + module_out_path = fuzz_test_output_path fuzz_config_file = "//arkcompiler/ets_runtime/test/fuzztest/containerstreesetgetlength_fuzzer" diff --git a/test/fuzztest/containerstreesetgetlowervalue_fuzzer/BUILD.gn b/test/fuzztest/containerstreesetgetlowervalue_fuzzer/BUILD.gn index 644c34e513..c2620fa578 100644 --- a/test/fuzztest/containerstreesetgetlowervalue_fuzzer/BUILD.gn +++ b/test/fuzztest/containerstreesetgetlowervalue_fuzzer/BUILD.gn @@ -20,7 +20,7 @@ import("//build/test.gni") ####################################fuzztest################################## ohos_fuzztest("ContainersTreeSetGetLowerValueFuzzTest") { - module_out_path = "arkcompiler/ets_runtime" + module_out_path = fuzz_test_output_path fuzz_config_file = "//arkcompiler/ets_runtime/test/fuzztest/containerstreesetgetlowervalue_fuzzer" diff --git a/test/fuzztest/containerstreesethas_fuzzer/BUILD.gn b/test/fuzztest/containerstreesethas_fuzzer/BUILD.gn index 166c01d32f..759b1bd09b 100644 --- a/test/fuzztest/containerstreesethas_fuzzer/BUILD.gn +++ b/test/fuzztest/containerstreesethas_fuzzer/BUILD.gn @@ -20,7 +20,7 @@ import("//build/test.gni") ####################################fuzztest################################## ohos_fuzztest("ContainersTreeSetHasFuzzTest") { - module_out_path = "arkcompiler/ets_runtime" + module_out_path = fuzz_test_output_path fuzz_config_file = "//arkcompiler/ets_runtime/test/fuzztest/containerstreesethas_fuzzer" diff --git a/test/fuzztest/containerstreesetisempty_fuzzer/BUILD.gn b/test/fuzztest/containerstreesetisempty_fuzzer/BUILD.gn index 103445fe09..dfa7c2d26c 100644 --- a/test/fuzztest/containerstreesetisempty_fuzzer/BUILD.gn +++ b/test/fuzztest/containerstreesetisempty_fuzzer/BUILD.gn @@ -20,7 +20,7 @@ import("//build/test.gni") ####################################fuzztest################################## ohos_fuzztest("ContainersTreeSetIsEmptyFuzzTest") { - module_out_path = "arkcompiler/ets_runtime" + module_out_path = fuzz_test_output_path fuzz_config_file = "//arkcompiler/ets_runtime/test/fuzztest/containerstreesetisempty_fuzzer" diff --git a/test/fuzztest/containerstreesetpopfirst_fuzzer/BUILD.gn b/test/fuzztest/containerstreesetpopfirst_fuzzer/BUILD.gn index 02c0add804..4ed342d5ff 100644 --- a/test/fuzztest/containerstreesetpopfirst_fuzzer/BUILD.gn +++ b/test/fuzztest/containerstreesetpopfirst_fuzzer/BUILD.gn @@ -20,7 +20,7 @@ import("//build/test.gni") ####################################fuzztest################################## ohos_fuzztest("ContainersTreeSetPopFirstFuzzTest") { - module_out_path = "arkcompiler/ets_runtime" + module_out_path = fuzz_test_output_path fuzz_config_file = "//arkcompiler/ets_runtime/test/fuzztest/containerstreesetpopfirst_fuzzer" diff --git a/test/fuzztest/containerstreesetpoplast_fuzzer/BUILD.gn b/test/fuzztest/containerstreesetpoplast_fuzzer/BUILD.gn index 162c6d0992..8c253d851f 100644 --- a/test/fuzztest/containerstreesetpoplast_fuzzer/BUILD.gn +++ b/test/fuzztest/containerstreesetpoplast_fuzzer/BUILD.gn @@ -20,7 +20,7 @@ import("//build/test.gni") ####################################fuzztest################################## ohos_fuzztest("ContainersTreeSetPopLastFuzzTest") { - module_out_path = "arkcompiler/ets_runtime" + module_out_path = fuzz_test_output_path fuzz_config_file = "//arkcompiler/ets_runtime/test/fuzztest/containerstreesetpoplast_fuzzer" diff --git a/test/fuzztest/containerstreesetremove_fuzzer/BUILD.gn b/test/fuzztest/containerstreesetremove_fuzzer/BUILD.gn index 8b848d4890..ad44b560f1 100644 --- a/test/fuzztest/containerstreesetremove_fuzzer/BUILD.gn +++ b/test/fuzztest/containerstreesetremove_fuzzer/BUILD.gn @@ -20,7 +20,7 @@ import("//build/test.gni") ####################################fuzztest################################## ohos_fuzztest("ContainersTreeSetRemoveFuzzTest") { - module_out_path = "arkcompiler/ets_runtime" + module_out_path = fuzz_test_output_path fuzz_config_file = "//arkcompiler/ets_runtime/test/fuzztest/containerstreesetremove_fuzzer" diff --git a/test/fuzztest/containerstreesetvalues_fuzzer/BUILD.gn b/test/fuzztest/containerstreesetvalues_fuzzer/BUILD.gn index 6b241b2180..aa33b36236 100644 --- a/test/fuzztest/containerstreesetvalues_fuzzer/BUILD.gn +++ b/test/fuzztest/containerstreesetvalues_fuzzer/BUILD.gn @@ -20,7 +20,7 @@ import("//build/test.gni") ####################################fuzztest################################## ohos_fuzztest("ContainersTreeSetValuesFuzzTest") { - module_out_path = "arkcompiler/ets_runtime" + module_out_path = fuzz_test_output_path fuzz_config_file = "//arkcompiler/ets_runtime/test/fuzztest/containerstreesetvalues_fuzzer" diff --git a/test/fuzztest/containersvectoradd_fuzzer/BUILD.gn b/test/fuzztest/containersvectoradd_fuzzer/BUILD.gn index 0ea35bb4f0..ccb0c99485 100644 --- a/test/fuzztest/containersvectoradd_fuzzer/BUILD.gn +++ b/test/fuzztest/containersvectoradd_fuzzer/BUILD.gn @@ -19,7 +19,7 @@ import("//build/ohos.gni") ##################################fuzztest##################################### ohos_fuzztest("ContainersVectorAddFuzzTest") { - module_out_path = "arkcompiler/ets_runtime" + module_out_path = fuzz_test_output_path fuzz_config_file = "//arkcompiler/ets_runtime/test/fuzztest/containersvectoradd_fuzzer" diff --git a/test/fuzztest/containersvectorclear_fuzzer/BUILD.gn b/test/fuzztest/containersvectorclear_fuzzer/BUILD.gn index 0138de3776..d728ed1fb1 100644 --- a/test/fuzztest/containersvectorclear_fuzzer/BUILD.gn +++ b/test/fuzztest/containersvectorclear_fuzzer/BUILD.gn @@ -19,7 +19,7 @@ import("//build/ohos.gni") ##################################fuzztest##################################### ohos_fuzztest("ContainersVectorClearFuzzTest") { - module_out_path = "arkcompiler/ets_runtime" + module_out_path = fuzz_test_output_path fuzz_config_file = "//arkcompiler/ets_runtime/test/fuzztest/containersvectorclear_fuzzer" diff --git a/test/fuzztest/containersvectorclone_fuzzer/BUILD.gn b/test/fuzztest/containersvectorclone_fuzzer/BUILD.gn index 214897fcbe..75a05cdcb8 100644 --- a/test/fuzztest/containersvectorclone_fuzzer/BUILD.gn +++ b/test/fuzztest/containersvectorclone_fuzzer/BUILD.gn @@ -19,7 +19,7 @@ import("//build/ohos.gni") ##################################fuzztest##################################### ohos_fuzztest("ContainersVectorCloneFuzzTest") { - module_out_path = "arkcompiler/ets_runtime" + module_out_path = fuzz_test_output_path fuzz_config_file = "//arkcompiler/ets_runtime/test/fuzztest/containersvectorclone_fuzzer" diff --git a/test/fuzztest/containersvectorconverttoarray_fuzzer/BUILD.gn b/test/fuzztest/containersvectorconverttoarray_fuzzer/BUILD.gn index 0671d47c4b..415d64ab5b 100644 --- a/test/fuzztest/containersvectorconverttoarray_fuzzer/BUILD.gn +++ b/test/fuzztest/containersvectorconverttoarray_fuzzer/BUILD.gn @@ -19,7 +19,7 @@ import("//build/ohos.gni") ##################################fuzztest##################################### ohos_fuzztest("ContainersVectorConvertToArrayFuzzTest") { - module_out_path = "arkcompiler/ets_runtime" + module_out_path = fuzz_test_output_path fuzz_config_file = "//arkcompiler/ets_runtime/test/fuzztest/containersvectorconverttoarray_fuzzer" diff --git a/test/fuzztest/containersvectorcopytoarray_fuzzer/BUILD.gn b/test/fuzztest/containersvectorcopytoarray_fuzzer/BUILD.gn index c1344d571b..5f58f99fd4 100644 --- a/test/fuzztest/containersvectorcopytoarray_fuzzer/BUILD.gn +++ b/test/fuzztest/containersvectorcopytoarray_fuzzer/BUILD.gn @@ -19,7 +19,7 @@ import("//build/ohos.gni") ##################################fuzztest##################################### ohos_fuzztest("ContainersVectorCopyToArrayFuzzTest") { - module_out_path = "arkcompiler/ets_runtime" + module_out_path = fuzz_test_output_path fuzz_config_file = "//arkcompiler/ets_runtime/test/fuzztest/containersvectorcopytoarray_fuzzer" diff --git a/test/fuzztest/containersvectorforeach_fuzzer/BUILD.gn b/test/fuzztest/containersvectorforeach_fuzzer/BUILD.gn index 3d1c64139c..d4b3e99934 100644 --- a/test/fuzztest/containersvectorforeach_fuzzer/BUILD.gn +++ b/test/fuzztest/containersvectorforeach_fuzzer/BUILD.gn @@ -19,7 +19,7 @@ import("//build/ohos.gni") ##################################fuzztest##################################### ohos_fuzztest("ContainersVectorForEachFuzzTest") { - module_out_path = "arkcompiler/ets_runtime" + module_out_path = fuzz_test_output_path fuzz_config_file = "//arkcompiler/ets_runtime/test/fuzztest/containersvectorforeach_fuzzer" diff --git a/test/fuzztest/containersvectorgetcapacity_fuzzer/BUILD.gn b/test/fuzztest/containersvectorgetcapacity_fuzzer/BUILD.gn index 3112fe79cc..0f3bcb3a9d 100644 --- a/test/fuzztest/containersvectorgetcapacity_fuzzer/BUILD.gn +++ b/test/fuzztest/containersvectorgetcapacity_fuzzer/BUILD.gn @@ -19,7 +19,7 @@ import("//build/ohos.gni") ##################################fuzztest##################################### ohos_fuzztest("ContainersVectorGetCapacityFuzzTest") { - module_out_path = "arkcompiler/ets_runtime" + module_out_path = fuzz_test_output_path fuzz_config_file = "//arkcompiler/ets_runtime/test/fuzztest/containersvectorgetcapacity_fuzzer" diff --git a/test/fuzztest/containersvectorgetfirstelement_fuzzer/BUILD.gn b/test/fuzztest/containersvectorgetfirstelement_fuzzer/BUILD.gn index 5ed01da065..20556f6f25 100644 --- a/test/fuzztest/containersvectorgetfirstelement_fuzzer/BUILD.gn +++ b/test/fuzztest/containersvectorgetfirstelement_fuzzer/BUILD.gn @@ -19,7 +19,7 @@ import("//build/ohos.gni") ##################################fuzztest##################################### ohos_fuzztest("ContainersVectorGetFirstElementFuzzTest") { - module_out_path = "arkcompiler/ets_runtime" + module_out_path = fuzz_test_output_path fuzz_config_file = "//arkcompiler/ets_runtime/test/fuzztest/containersvectorgetfirstelement_fuzzer" diff --git a/test/fuzztest/containersvectorgetindexfrom_fuzzer/BUILD.gn b/test/fuzztest/containersvectorgetindexfrom_fuzzer/BUILD.gn index a30027104d..cfd8208fc7 100644 --- a/test/fuzztest/containersvectorgetindexfrom_fuzzer/BUILD.gn +++ b/test/fuzztest/containersvectorgetindexfrom_fuzzer/BUILD.gn @@ -19,7 +19,7 @@ import("//build/ohos.gni") ##################################fuzztest##################################### ohos_fuzztest("ContainersVectorGetIndexFromFuzzTest") { - module_out_path = "arkcompiler/ets_runtime" + module_out_path = fuzz_test_output_path fuzz_config_file = "//arkcompiler/ets_runtime/test/fuzztest/containersvectorgetindexfrom_fuzzer" diff --git a/test/fuzztest/containersvectorgetindexof_fuzzer/BUILD.gn b/test/fuzztest/containersvectorgetindexof_fuzzer/BUILD.gn index 6ffc5ca47e..151657cce3 100644 --- a/test/fuzztest/containersvectorgetindexof_fuzzer/BUILD.gn +++ b/test/fuzztest/containersvectorgetindexof_fuzzer/BUILD.gn @@ -19,7 +19,7 @@ import("//build/ohos.gni") ##################################fuzztest##################################### ohos_fuzztest("ContainersVectorGetIndexOfFuzzTest") { - module_out_path = "arkcompiler/ets_runtime" + module_out_path = fuzz_test_output_path fuzz_config_file = "//arkcompiler/ets_runtime/test/fuzztest/containersvectorgetindexof_fuzzer" diff --git a/test/fuzztest/containersvectorgetlastelement_fuzzer/BUILD.gn b/test/fuzztest/containersvectorgetlastelement_fuzzer/BUILD.gn index 0ca393677e..fc378a9685 100644 --- a/test/fuzztest/containersvectorgetlastelement_fuzzer/BUILD.gn +++ b/test/fuzztest/containersvectorgetlastelement_fuzzer/BUILD.gn @@ -19,7 +19,7 @@ import("//build/ohos.gni") ##################################fuzztest##################################### ohos_fuzztest("ContainersVectorGetLastElementFuzzTest") { - module_out_path = "arkcompiler/ets_runtime" + module_out_path = fuzz_test_output_path fuzz_config_file = "//arkcompiler/ets_runtime/test/fuzztest/containersvectorgetlastelement_fuzzer" diff --git a/test/fuzztest/containersvectorgetlastindexfrom_fuzzer/BUILD.gn b/test/fuzztest/containersvectorgetlastindexfrom_fuzzer/BUILD.gn index 372a74029f..4b842cc78c 100644 --- a/test/fuzztest/containersvectorgetlastindexfrom_fuzzer/BUILD.gn +++ b/test/fuzztest/containersvectorgetlastindexfrom_fuzzer/BUILD.gn @@ -19,7 +19,7 @@ import("//build/ohos.gni") ##################################fuzztest##################################### ohos_fuzztest("ContainersVectorGetLastIndexFromFuzzTest") { - module_out_path = "arkcompiler/ets_runtime" + module_out_path = fuzz_test_output_path fuzz_config_file = "//arkcompiler/ets_runtime/test/fuzztest/containersvectorgetlastindexfrom_fuzzer" diff --git a/test/fuzztest/containersvectorgetlastindexof_fuzzer/BUILD.gn b/test/fuzztest/containersvectorgetlastindexof_fuzzer/BUILD.gn index 4460868ebd..f5f37273d8 100644 --- a/test/fuzztest/containersvectorgetlastindexof_fuzzer/BUILD.gn +++ b/test/fuzztest/containersvectorgetlastindexof_fuzzer/BUILD.gn @@ -19,7 +19,7 @@ import("//build/ohos.gni") ##################################fuzztest##################################### ohos_fuzztest("ContainersVectorGetLastIndexOfFuzzTest") { - module_out_path = "arkcompiler/ets_runtime" + module_out_path = fuzz_test_output_path fuzz_config_file = "//arkcompiler/ets_runtime/test/fuzztest/containersvectorgetlastindexof_fuzzer" diff --git a/test/fuzztest/containersvectorhas_fuzzer/BUILD.gn b/test/fuzztest/containersvectorhas_fuzzer/BUILD.gn index fbc332435d..89445e3349 100644 --- a/test/fuzztest/containersvectorhas_fuzzer/BUILD.gn +++ b/test/fuzztest/containersvectorhas_fuzzer/BUILD.gn @@ -19,7 +19,7 @@ import("//build/ohos.gni") ##################################fuzztest##################################### ohos_fuzztest("ContainersVectorHasFuzzTest") { - module_out_path = "arkcompiler/ets_runtime" + module_out_path = fuzz_test_output_path fuzz_config_file = "//arkcompiler/ets_runtime/test/fuzztest/containersvectorhas_fuzzer" diff --git a/test/fuzztest/containersvectorincreasecapacityto_fuzzer/BUILD.gn b/test/fuzztest/containersvectorincreasecapacityto_fuzzer/BUILD.gn index 77e31768ff..107295e97d 100644 --- a/test/fuzztest/containersvectorincreasecapacityto_fuzzer/BUILD.gn +++ b/test/fuzztest/containersvectorincreasecapacityto_fuzzer/BUILD.gn @@ -19,7 +19,7 @@ import("//build/ohos.gni") ##################################fuzztest##################################### ohos_fuzztest("ContainersVectorIncreaseCapacityToFuzzTest") { - module_out_path = "arkcompiler/ets_runtime" + module_out_path = fuzz_test_output_path fuzz_config_file = "//arkcompiler/ets_runtime/test/fuzztest/containersvectorincreasecapacityto_fuzzer" diff --git a/test/fuzztest/containersvectorinsert_fuzzer/BUILD.gn b/test/fuzztest/containersvectorinsert_fuzzer/BUILD.gn index 5660bf53bb..817b3084cd 100644 --- a/test/fuzztest/containersvectorinsert_fuzzer/BUILD.gn +++ b/test/fuzztest/containersvectorinsert_fuzzer/BUILD.gn @@ -19,7 +19,7 @@ import("//build/ohos.gni") ##################################fuzztest##################################### ohos_fuzztest("ContainersVectorInsertFuzzTest") { - module_out_path = "arkcompiler/ets_runtime" + module_out_path = fuzz_test_output_path fuzz_config_file = "//arkcompiler/ets_runtime/test/fuzztest/containersvectorinsert_fuzzer" diff --git a/test/fuzztest/containersvectorisempty_fuzzer/BUILD.gn b/test/fuzztest/containersvectorisempty_fuzzer/BUILD.gn index c8970b3af1..611fda6487 100644 --- a/test/fuzztest/containersvectorisempty_fuzzer/BUILD.gn +++ b/test/fuzztest/containersvectorisempty_fuzzer/BUILD.gn @@ -19,7 +19,7 @@ import("//build/ohos.gni") ##################################fuzztest##################################### ohos_fuzztest("ContainersVectorIsEmptyFuzzTest") { - module_out_path = "arkcompiler/ets_runtime" + module_out_path = fuzz_test_output_path fuzz_config_file = "//arkcompiler/ets_runtime/test/fuzztest/containersvectorisempty_fuzzer" diff --git a/test/fuzztest/containersvectoriterator_fuzzer/BUILD.gn b/test/fuzztest/containersvectoriterator_fuzzer/BUILD.gn index 9819776629..5ef66edc17 100644 --- a/test/fuzztest/containersvectoriterator_fuzzer/BUILD.gn +++ b/test/fuzztest/containersvectoriterator_fuzzer/BUILD.gn @@ -19,7 +19,7 @@ import("//build/ohos.gni") ##################################fuzztest##################################### ohos_fuzztest("ContainersVectorIteratorFuzzTest") { - module_out_path = "arkcompiler/ets_runtime" + module_out_path = fuzz_test_output_path fuzz_config_file = "//arkcompiler/ets_runtime/test/fuzztest/containersvectoriterator_fuzzer" diff --git a/test/fuzztest/containersvectorremove_fuzzer/BUILD.gn b/test/fuzztest/containersvectorremove_fuzzer/BUILD.gn index e262fb726b..f783726d3c 100644 --- a/test/fuzztest/containersvectorremove_fuzzer/BUILD.gn +++ b/test/fuzztest/containersvectorremove_fuzzer/BUILD.gn @@ -19,7 +19,7 @@ import("//build/ohos.gni") ##################################fuzztest##################################### ohos_fuzztest("ContainersVectorRemoveFuzzTest") { - module_out_path = "arkcompiler/ets_runtime" + module_out_path = fuzz_test_output_path fuzz_config_file = "//arkcompiler/ets_runtime/test/fuzztest/containersvectorremove_fuzzer" diff --git a/test/fuzztest/containersvectorremovebyrange_fuzzer/BUILD.gn b/test/fuzztest/containersvectorremovebyrange_fuzzer/BUILD.gn index baf8c6ba5d..c357432937 100644 --- a/test/fuzztest/containersvectorremovebyrange_fuzzer/BUILD.gn +++ b/test/fuzztest/containersvectorremovebyrange_fuzzer/BUILD.gn @@ -19,7 +19,7 @@ import("//build/ohos.gni") ##################################fuzztest##################################### ohos_fuzztest("ContainersVectorRemoveByRangeFuzzTest") { - module_out_path = "arkcompiler/ets_runtime" + module_out_path = fuzz_test_output_path fuzz_config_file = "//arkcompiler/ets_runtime/test/fuzztest/containersvectorremovebyrange_fuzzer" diff --git a/test/fuzztest/containersvectorreplaceallelements_fuzzer/BUILD.gn b/test/fuzztest/containersvectorreplaceallelements_fuzzer/BUILD.gn index b6813afd90..80782664cc 100644 --- a/test/fuzztest/containersvectorreplaceallelements_fuzzer/BUILD.gn +++ b/test/fuzztest/containersvectorreplaceallelements_fuzzer/BUILD.gn @@ -19,7 +19,7 @@ import("//build/ohos.gni") ##################################fuzztest##################################### ohos_fuzztest("ContainersVectorReplaceAllElementsFuzzTest") { - module_out_path = "arkcompiler/ets_runtime" + module_out_path = fuzz_test_output_path fuzz_config_file = "//arkcompiler/ets_runtime/test/fuzztest/containersvectorreplaceallelements_fuzzer" diff --git a/test/fuzztest/containersvectorset_fuzzer/BUILD.gn b/test/fuzztest/containersvectorset_fuzzer/BUILD.gn index 07038c11ac..abc9f6ebb1 100644 --- a/test/fuzztest/containersvectorset_fuzzer/BUILD.gn +++ b/test/fuzztest/containersvectorset_fuzzer/BUILD.gn @@ -19,7 +19,7 @@ import("//build/ohos.gni") ##################################fuzztest##################################### ohos_fuzztest("ContainersVectorSetFuzzTest") { - module_out_path = "arkcompiler/ets_runtime" + module_out_path = fuzz_test_output_path fuzz_config_file = "//arkcompiler/ets_runtime/test/fuzztest/containersvectorset_fuzzer" diff --git a/test/fuzztest/containersvectorsetlength_fuzzer/BUILD.gn b/test/fuzztest/containersvectorsetlength_fuzzer/BUILD.gn index d222a189d0..3a0461a8de 100644 --- a/test/fuzztest/containersvectorsetlength_fuzzer/BUILD.gn +++ b/test/fuzztest/containersvectorsetlength_fuzzer/BUILD.gn @@ -19,7 +19,7 @@ import("//build/ohos.gni") ##################################fuzztest##################################### ohos_fuzztest("ContainersVectorSetLengthFuzzTest") { - module_out_path = "arkcompiler/ets_runtime" + module_out_path = fuzz_test_output_path fuzz_config_file = "//arkcompiler/ets_runtime/test/fuzztest/containersvectorsetlength_fuzzer" diff --git a/test/fuzztest/containersvectorsort_fuzzer/BUILD.gn b/test/fuzztest/containersvectorsort_fuzzer/BUILD.gn index 8f7280a93b..08e5799b9f 100644 --- a/test/fuzztest/containersvectorsort_fuzzer/BUILD.gn +++ b/test/fuzztest/containersvectorsort_fuzzer/BUILD.gn @@ -19,7 +19,7 @@ import("//build/ohos.gni") ##################################fuzztest##################################### ohos_fuzztest("ContainersVectorSortFuzzTest") { - module_out_path = "arkcompiler/ets_runtime" + module_out_path = fuzz_test_output_path fuzz_config_file = "//arkcompiler/ets_runtime/test/fuzztest/containersvectorsort_fuzzer" diff --git a/test/fuzztest/containersvectorsubvector_fuzzer/BUILD.gn b/test/fuzztest/containersvectorsubvector_fuzzer/BUILD.gn index c94d91f5ea..b7c9a884f6 100644 --- a/test/fuzztest/containersvectorsubvector_fuzzer/BUILD.gn +++ b/test/fuzztest/containersvectorsubvector_fuzzer/BUILD.gn @@ -19,7 +19,7 @@ import("//build/ohos.gni") ##################################fuzztest##################################### ohos_fuzztest("ContainersVectorSubVectorFuzzTest") { - module_out_path = "arkcompiler/ets_runtime" + module_out_path = fuzz_test_output_path fuzz_config_file = "//arkcompiler/ets_runtime/test/fuzztest/containersvectorsubvector_fuzzer" diff --git a/test/fuzztest/containersvectortostring_fuzzer/BUILD.gn b/test/fuzztest/containersvectortostring_fuzzer/BUILD.gn index d9307a82a1..878811f09d 100644 --- a/test/fuzztest/containersvectortostring_fuzzer/BUILD.gn +++ b/test/fuzztest/containersvectortostring_fuzzer/BUILD.gn @@ -19,7 +19,7 @@ import("//build/ohos.gni") ##################################fuzztest##################################### ohos_fuzztest("ContainersVectorToStringFuzzTest") { - module_out_path = "arkcompiler/ets_runtime" + module_out_path = fuzz_test_output_path fuzz_config_file = "//arkcompiler/ets_runtime/test/fuzztest/containersvectortostring_fuzzer" diff --git a/test/fuzztest/containersvectortrimtocurrentlength_fuzzer/BUILD.gn b/test/fuzztest/containersvectortrimtocurrentlength_fuzzer/BUILD.gn index 51ef80568f..2ca16aaef8 100644 --- a/test/fuzztest/containersvectortrimtocurrentlength_fuzzer/BUILD.gn +++ b/test/fuzztest/containersvectortrimtocurrentlength_fuzzer/BUILD.gn @@ -19,7 +19,7 @@ import("//build/ohos.gni") ##################################fuzztest##################################### ohos_fuzztest("ContainersVectorTrimToCurrentLengthFuzzTest") { - module_out_path = "arkcompiler/ets_runtime" + module_out_path = fuzz_test_output_path fuzz_config_file = "//arkcompiler/ets_runtime/test/fuzztest/containersvectortrimtocurrentlength_fuzzer" diff --git a/test/fuzztest/createbigwords_fuzzer/BUILD.gn b/test/fuzztest/createbigwords_fuzzer/BUILD.gn index a5a8df80c3..7d593640b9 100644 --- a/test/fuzztest/createbigwords_fuzzer/BUILD.gn +++ b/test/fuzztest/createbigwords_fuzzer/BUILD.gn @@ -19,7 +19,7 @@ import("//build/ohos.gni") ####################################fuzztest################################## ohos_fuzztest("CreateBigWordsFuzzTest") { - module_out_path = "arkcompiler/ets_runtime" + module_out_path = fuzz_test_output_path fuzz_config_file = "//arkcompiler/ets_runtime/test/fuzztest/createbigwords_fuzzer" diff --git a/test/fuzztest/dataviewrefnew_fuzzer/BUILD.gn b/test/fuzztest/dataviewrefnew_fuzzer/BUILD.gn index 276f20f14d..5e5d707df5 100644 --- a/test/fuzztest/dataviewrefnew_fuzzer/BUILD.gn +++ b/test/fuzztest/dataviewrefnew_fuzzer/BUILD.gn @@ -19,7 +19,7 @@ import("//build/ohos.gni") ##################################fuzztest##################################### ohos_fuzztest("DataViewRefNewFuzzTest") { - module_out_path = "arkcompiler/ets_runtime" + module_out_path = fuzz_test_output_path fuzz_config_file = "//arkcompiler/ets_runtime/test/fuzztest/dataviewrefnew_fuzzer" diff --git a/test/fuzztest/daterefnew_fuzzer/BUILD.gn b/test/fuzztest/daterefnew_fuzzer/BUILD.gn index 8c617d8a59..66ea833ec0 100644 --- a/test/fuzztest/daterefnew_fuzzer/BUILD.gn +++ b/test/fuzztest/daterefnew_fuzzer/BUILD.gn @@ -19,7 +19,7 @@ import("//build/ohos.gni") ##################################fuzztest##################################### ohos_fuzztest("DateRefNewFuzzTest") { - module_out_path = "arkcompiler/ets_runtime" + module_out_path = fuzz_test_output_path fuzz_config_file = "//arkcompiler/ets_runtime/test/fuzztest/daterefnew_fuzzer" diff --git a/test/fuzztest/dumpheapsnapshot1_fuzzer/BUILD.gn b/test/fuzztest/dumpheapsnapshot1_fuzzer/BUILD.gn index a3a55710c7..659c1de8eb 100644 --- a/test/fuzztest/dumpheapsnapshot1_fuzzer/BUILD.gn +++ b/test/fuzztest/dumpheapsnapshot1_fuzzer/BUILD.gn @@ -19,7 +19,7 @@ import("//build/ohos.gni") ##################################fuzztest##################################### ohos_fuzztest("DumpHeapSnapshot1FuzzTest") { - module_out_path = "arkcompiler/ets_runtime" + module_out_path = fuzz_test_output_path fuzz_config_file = "//arkcompiler/ets_runtime/test/fuzztest/dumpheapsnapshot1_fuzzer" diff --git a/test/fuzztest/dumpheapsnapshot2_fuzzer/BUILD.gn b/test/fuzztest/dumpheapsnapshot2_fuzzer/BUILD.gn index 8ba48d7b2d..3f337de569 100644 --- a/test/fuzztest/dumpheapsnapshot2_fuzzer/BUILD.gn +++ b/test/fuzztest/dumpheapsnapshot2_fuzzer/BUILD.gn @@ -19,7 +19,7 @@ import("//build/ohos.gni") ##################################fuzztest##################################### ohos_fuzztest("DumpHeapSnapshot2FuzzTest") { - module_out_path = "arkcompiler/ets_runtime" + module_out_path = fuzz_test_output_path fuzz_config_file = "//arkcompiler/ets_runtime/test/fuzztest/dumpheapsnapshot2_fuzzer" diff --git a/test/fuzztest/dumpheapsnapshot3_fuzzer/BUILD.gn b/test/fuzztest/dumpheapsnapshot3_fuzzer/BUILD.gn index cbc77836c4..0a8cc29568 100644 --- a/test/fuzztest/dumpheapsnapshot3_fuzzer/BUILD.gn +++ b/test/fuzztest/dumpheapsnapshot3_fuzzer/BUILD.gn @@ -19,7 +19,7 @@ import("//build/ohos.gni") ##################################fuzztest##################################### ohos_fuzztest("DumpHeapSnapshot3FuzzTest") { - module_out_path = "arkcompiler/ets_runtime" + module_out_path = fuzz_test_output_path fuzz_config_file = "//arkcompiler/ets_runtime/test/fuzztest/dumpheapsnapshot3_fuzzer" diff --git a/test/fuzztest/execute_fuzzer/BUILD.gn b/test/fuzztest/execute_fuzzer/BUILD.gn index 5c1f296a90..2abaf9be8e 100644 --- a/test/fuzztest/execute_fuzzer/BUILD.gn +++ b/test/fuzztest/execute_fuzzer/BUILD.gn @@ -19,7 +19,7 @@ import("//build/ohos.gni") ############################fuzztest################################ ohos_fuzztest("ExecuteFuzzTest") { - module_out_path = "arkcompiler/ets_runtime" + module_out_path = fuzz_test_output_path fuzz_config_file = "//arkcompiler/ets_runtime/test/fuzztest/execute_fuzzer" diff --git a/test/fuzztest/float32arrayrefnew_fuzzer/BUILD.gn b/test/fuzztest/float32arrayrefnew_fuzzer/BUILD.gn index 77d362c5da..be141180eb 100644 --- a/test/fuzztest/float32arrayrefnew_fuzzer/BUILD.gn +++ b/test/fuzztest/float32arrayrefnew_fuzzer/BUILD.gn @@ -19,7 +19,7 @@ import("//build/ohos.gni") ##################################fuzztest##################################### ohos_fuzztest("Float32ArrayRefNewFuzzTest") { - module_out_path = "arkcompiler/ets_runtime" + module_out_path = fuzz_test_output_path fuzz_config_file = "//arkcompiler/ets_runtime/test/fuzztest/float32arrayrefnew_fuzzer" diff --git a/test/fuzztest/float64arrayrefnew_fuzzer/BUILD.gn b/test/fuzztest/float64arrayrefnew_fuzzer/BUILD.gn index ebeb349c3a..0c39a4c24e 100644 --- a/test/fuzztest/float64arrayrefnew_fuzzer/BUILD.gn +++ b/test/fuzztest/float64arrayrefnew_fuzzer/BUILD.gn @@ -19,7 +19,7 @@ import("//build/ohos.gni") ##################################fuzztest##################################### ohos_fuzztest("Float64ArrayRefNewFuzzTest") { - module_out_path = "arkcompiler/ets_runtime" + module_out_path = fuzz_test_output_path fuzz_config_file = "//arkcompiler/ets_runtime/test/fuzztest/float64arrayrefnew_fuzzer" diff --git a/test/fuzztest/functionrefcall_fuzzer/BUILD.gn b/test/fuzztest/functionrefcall_fuzzer/BUILD.gn index f3e90ba33e..f194e41fa4 100644 --- a/test/fuzztest/functionrefcall_fuzzer/BUILD.gn +++ b/test/fuzztest/functionrefcall_fuzzer/BUILD.gn @@ -19,7 +19,7 @@ import("//build/ohos.gni") ####################################fuzztest################################## ohos_fuzztest("FunctionRefCallFuzzTest") { - module_out_path = "arkcompiler/ets_runtime" + module_out_path = fuzz_test_output_path fuzz_config_file = "//arkcompiler/ets_runtime/test/fuzztest/functionrefcall_fuzzer" diff --git a/test/fuzztest/functionrefconstructor_fuzzer/BUILD.gn b/test/fuzztest/functionrefconstructor_fuzzer/BUILD.gn index c6f02c00f9..797ddb5874 100644 --- a/test/fuzztest/functionrefconstructor_fuzzer/BUILD.gn +++ b/test/fuzztest/functionrefconstructor_fuzzer/BUILD.gn @@ -19,7 +19,7 @@ import("//build/ohos.gni") ####################################fuzztest################################## ohos_fuzztest("FunctionRefConstructorFuzzTest") { - module_out_path = "arkcompiler/ets_runtime" + module_out_path = fuzz_test_output_path fuzz_config_file = "//arkcompiler/ets_runtime/test/fuzztest/functionrefconstructor_fuzzer" diff --git a/test/fuzztest/functionrefnew_fuzzer/BUILD.gn b/test/fuzztest/functionrefnew_fuzzer/BUILD.gn index 886930c4c6..8deba2b665 100644 --- a/test/fuzztest/functionrefnew_fuzzer/BUILD.gn +++ b/test/fuzztest/functionrefnew_fuzzer/BUILD.gn @@ -19,7 +19,7 @@ import("//build/ohos.gni") ####################################fuzztest################################## ohos_fuzztest("FunctionRefNewFuzzTest") { - module_out_path = "arkcompiler/ets_runtime" + module_out_path = fuzz_test_output_path fuzz_config_file = "//arkcompiler/ets_runtime/test/fuzztest/functionrefnew_fuzzer" diff --git a/test/fuzztest/functionrefnewclassfunction_fuzzer/BUILD.gn b/test/fuzztest/functionrefnewclassfunction_fuzzer/BUILD.gn index b2b8a64958..b49f586f5e 100644 --- a/test/fuzztest/functionrefnewclassfunction_fuzzer/BUILD.gn +++ b/test/fuzztest/functionrefnewclassfunction_fuzzer/BUILD.gn @@ -19,7 +19,7 @@ import("//build/ohos.gni") ####################################fuzztest################################## ohos_fuzztest("FunctionRefNewClassFunctionFuzzTest") { - module_out_path = "arkcompiler/ets_runtime" + module_out_path = fuzz_test_output_path fuzz_config_file = "//arkcompiler/ets_runtime/test/fuzztest/functionrefnewclassfunction_fuzzer" diff --git a/test/fuzztest/getallocationprofile_fuzzer/BUILD.gn b/test/fuzztest/getallocationprofile_fuzzer/BUILD.gn index 286e68b55b..9950b47278 100644 --- a/test/fuzztest/getallocationprofile_fuzzer/BUILD.gn +++ b/test/fuzztest/getallocationprofile_fuzzer/BUILD.gn @@ -19,7 +19,7 @@ import("//build/ohos.gni") ####################################fuzztest################################## ohos_fuzztest("GetAllocationProfileFuzzTest") { - module_out_path = "arkcompiler/ets_runtime" + module_out_path = fuzz_test_output_path fuzz_config_file = "$js_root/test/fuzztest/getallocationprofile_fuzzer" diff --git a/test/fuzztest/getnativepointerfield_fuzzer/BUILD.gn b/test/fuzztest/getnativepointerfield_fuzzer/BUILD.gn index 8320cb8504..71e110faff 100644 --- a/test/fuzztest/getnativepointerfield_fuzzer/BUILD.gn +++ b/test/fuzztest/getnativepointerfield_fuzzer/BUILD.gn @@ -19,7 +19,7 @@ import("//build/ohos.gni") ####################################fuzztest################################## ohos_fuzztest("GetNativePointerFieldFuzzTest") { - module_out_path = "arkcompiler/ets_runtime" + module_out_path = fuzz_test_output_path fuzz_config_file = "//arkcompiler/ets_runtime/test/fuzztest/getnativepointerfield_fuzzer" diff --git a/test/fuzztest/getwordsarray_fuzzer/BUILD.gn b/test/fuzztest/getwordsarray_fuzzer/BUILD.gn index c461a25291..868169e9f0 100644 --- a/test/fuzztest/getwordsarray_fuzzer/BUILD.gn +++ b/test/fuzztest/getwordsarray_fuzzer/BUILD.gn @@ -19,7 +19,7 @@ import("//build/ohos.gni") ####################################fuzztest################################## ohos_fuzztest("GetWordsArrayFuzzTest") { - module_out_path = "arkcompiler/ets_runtime" + module_out_path = fuzz_test_output_path fuzz_config_file = "//arkcompiler/ets_runtime/test/fuzztest/getwordsarray_fuzzer" diff --git a/test/fuzztest/int16arrayrefnew_fuzzer/BUILD.gn b/test/fuzztest/int16arrayrefnew_fuzzer/BUILD.gn index a367de8bca..32a81ba7f7 100644 --- a/test/fuzztest/int16arrayrefnew_fuzzer/BUILD.gn +++ b/test/fuzztest/int16arrayrefnew_fuzzer/BUILD.gn @@ -19,7 +19,7 @@ import("//build/ohos.gni") ##################################fuzztest##################################### ohos_fuzztest("Int16ArrayRefNewFuzzTest") { - module_out_path = "arkcompiler/ets_runtime" + module_out_path = fuzz_test_output_path fuzz_config_file = "//arkcompiler/ets_runtime/test/fuzztest/int16arrayrefnew_fuzzer" diff --git a/test/fuzztest/int32arrayrefnew_fuzzer/BUILD.gn b/test/fuzztest/int32arrayrefnew_fuzzer/BUILD.gn index 7c25457d2e..db85ac4cd9 100644 --- a/test/fuzztest/int32arrayrefnew_fuzzer/BUILD.gn +++ b/test/fuzztest/int32arrayrefnew_fuzzer/BUILD.gn @@ -19,7 +19,7 @@ import("//build/ohos.gni") ##################################fuzztest##################################### ohos_fuzztest("Int32ArrayRefNewFuzzTest") { - module_out_path = "arkcompiler/ets_runtime" + module_out_path = fuzz_test_output_path fuzz_config_file = "//arkcompiler/ets_runtime/test/fuzztest/int32arrayrefnew_fuzzer" diff --git a/test/fuzztest/int8arrayrefnew_fuzzer/BUILD.gn b/test/fuzztest/int8arrayrefnew_fuzzer/BUILD.gn index a0a2f2302f..0e5c34223f 100644 --- a/test/fuzztest/int8arrayrefnew_fuzzer/BUILD.gn +++ b/test/fuzztest/int8arrayrefnew_fuzzer/BUILD.gn @@ -19,7 +19,7 @@ import("//build/ohos.gni") ##################################fuzztest##################################### ohos_fuzztest("Int8ArrayRefNewFuzzTest") { - module_out_path = "arkcompiler/ets_runtime" + module_out_path = fuzz_test_output_path fuzz_config_file = "//arkcompiler/ets_runtime/test/fuzztest/int8arrayrefnew_fuzzer" diff --git a/test/fuzztest/jsnapideleteserializationdata_fuzzer/BUILD.gn b/test/fuzztest/jsnapideleteserializationdata_fuzzer/BUILD.gn index 3f7aaec1a5..0b0c21e523 100644 --- a/test/fuzztest/jsnapideleteserializationdata_fuzzer/BUILD.gn +++ b/test/fuzztest/jsnapideleteserializationdata_fuzzer/BUILD.gn @@ -19,7 +19,7 @@ import("//build/ohos.gni") ####################################fuzztest################################## ohos_fuzztest("JSNApiDeleteSerializationDataFuzzTest") { - module_out_path = "arkcompiler/ets_runtime" + module_out_path = fuzz_test_output_path fuzz_config_file = "//arkcompiler/ets_runtime/test/fuzztest/jsnapideleteserializationdata_fuzzer" diff --git a/test/fuzztest/jsnapideserializevalue_fuzzer/BUILD.gn b/test/fuzztest/jsnapideserializevalue_fuzzer/BUILD.gn index 8a94c93e41..96fad8f634 100644 --- a/test/fuzztest/jsnapideserializevalue_fuzzer/BUILD.gn +++ b/test/fuzztest/jsnapideserializevalue_fuzzer/BUILD.gn @@ -19,7 +19,7 @@ import("//build/ohos.gni") ####################################fuzztest################################## ohos_fuzztest("JSNApiDeserializeValueFuzzTest") { - module_out_path = "arkcompiler/ets_runtime" + module_out_path = fuzz_test_output_path fuzz_config_file = "//arkcompiler/ets_runtime/test/fuzztest/jsnapideserializevalue_fuzzer" diff --git a/test/fuzztest/jsnapisethostpromiserejectiontracker_fuzzer/BUILD.gn b/test/fuzztest/jsnapisethostpromiserejectiontracker_fuzzer/BUILD.gn index 0234e7cf4b..2c14b744a1 100644 --- a/test/fuzztest/jsnapisethostpromiserejectiontracker_fuzzer/BUILD.gn +++ b/test/fuzztest/jsnapisethostpromiserejectiontracker_fuzzer/BUILD.gn @@ -19,7 +19,7 @@ import("//build/ohos.gni") ####################################fuzztest################################## ohos_fuzztest("JSNApiSetHostPromiseRejectionTrackerFuzzTest") { - module_out_path = "arkcompiler/ets_runtime" + module_out_path = fuzz_test_output_path fuzz_config_file = "//arkcompiler/ets_runtime/test/fuzztest/jsnapisethostpromiserejectiontracker_fuzzer" diff --git a/test/fuzztest/jsnapistartdebugger_fuzzer/BUILD.gn b/test/fuzztest/jsnapistartdebugger_fuzzer/BUILD.gn index 205e194d76..0c2a5aa472 100644 --- a/test/fuzztest/jsnapistartdebugger_fuzzer/BUILD.gn +++ b/test/fuzztest/jsnapistartdebugger_fuzzer/BUILD.gn @@ -19,7 +19,7 @@ import("//build/ohos.gni") ####################################fuzztest################################## ohos_fuzztest("JSNApiStartDebuggerFuzzTest") { - module_out_path = "arkcompiler/ets_runtime" + module_out_path = fuzz_test_output_path fuzz_config_file = "//arkcompiler/ets_runtime/test/fuzztest/jsnapistartdebugger_fuzzer" diff --git a/test/fuzztest/jsonparse_fuzzer/BUILD.gn b/test/fuzztest/jsonparse_fuzzer/BUILD.gn index e4ea649df3..fa516b81f2 100644 --- a/test/fuzztest/jsonparse_fuzzer/BUILD.gn +++ b/test/fuzztest/jsonparse_fuzzer/BUILD.gn @@ -19,7 +19,7 @@ import("//build/ohos.gni") ##################################fuzztest##################################### ohos_fuzztest("JSONParseFuzzTest") { - module_out_path = "arkcompiler/ets_runtime" + module_out_path = fuzz_test_output_path fuzz_config_file = "//arkcompiler/ets_runtime/test/fuzztest/jsonparse_fuzzer" diff --git a/test/fuzztest/jsonstringify_fuzzer/BUILD.gn b/test/fuzztest/jsonstringify_fuzzer/BUILD.gn index 304b158780..d65baba6db 100644 --- a/test/fuzztest/jsonstringify_fuzzer/BUILD.gn +++ b/test/fuzztest/jsonstringify_fuzzer/BUILD.gn @@ -19,7 +19,7 @@ import("//build/ohos.gni") ##################################fuzztest##################################### ohos_fuzztest("JSONStringifyFuzzTest") { - module_out_path = "arkcompiler/ets_runtime" + module_out_path = fuzz_test_output_path fuzz_config_file = "//arkcompiler/ets_runtime/test/fuzztest/jsonstringify_fuzzer" diff --git a/test/fuzztest/nativepointernew1_fuzzer/BUILD.gn b/test/fuzztest/nativepointernew1_fuzzer/BUILD.gn index 4694089f14..ada7d657b1 100644 --- a/test/fuzztest/nativepointernew1_fuzzer/BUILD.gn +++ b/test/fuzztest/nativepointernew1_fuzzer/BUILD.gn @@ -19,7 +19,7 @@ import("//build/ohos.gni") ####################################fuzztest################################## ohos_fuzztest("NativePointerNew1FuzzTest") { - module_out_path = "arkcompiler/ets_runtime" + module_out_path = fuzz_test_output_path fuzz_config_file = "//arkcompiler/ets_runtime/test/fuzztest/nativepointernew1_fuzzer" diff --git a/test/fuzztest/nativepointernew2_fuzzer/BUILD.gn b/test/fuzztest/nativepointernew2_fuzzer/BUILD.gn index 7eea6d3695..1ac1d922db 100644 --- a/test/fuzztest/nativepointernew2_fuzzer/BUILD.gn +++ b/test/fuzztest/nativepointernew2_fuzzer/BUILD.gn @@ -19,7 +19,7 @@ import("//build/ohos.gni") ####################################fuzztest################################## ohos_fuzztest("NativePointerNew2FuzzTest") { - module_out_path = "arkcompiler/ets_runtime" + module_out_path = fuzz_test_output_path fuzz_config_file = "//arkcompiler/ets_runtime/test/fuzztest/nativepointernew2_fuzzer" diff --git a/test/fuzztest/newbigintbyint64_fuzzer/BUILD.gn b/test/fuzztest/newbigintbyint64_fuzzer/BUILD.gn index 501d284def..87f5a36af0 100644 --- a/test/fuzztest/newbigintbyint64_fuzzer/BUILD.gn +++ b/test/fuzztest/newbigintbyint64_fuzzer/BUILD.gn @@ -19,7 +19,7 @@ import("//build/ohos.gni") ####################################fuzztest################################## ohos_fuzztest("NewBigIntByInt64FuzzTest") { - module_out_path = "arkcompiler/ets_runtime" + module_out_path = fuzz_test_output_path fuzz_config_file = "//arkcompiler/ets_runtime/test/fuzztest/newbigintbyint64_fuzzer" diff --git a/test/fuzztest/newbigintbyuint64_fuzzer/BUILD.gn b/test/fuzztest/newbigintbyuint64_fuzzer/BUILD.gn index 73204bde9a..ceb7a615f7 100644 --- a/test/fuzztest/newbigintbyuint64_fuzzer/BUILD.gn +++ b/test/fuzztest/newbigintbyuint64_fuzzer/BUILD.gn @@ -19,7 +19,7 @@ import("//build/ohos.gni") ####################################fuzztest################################## ohos_fuzztest("NewBigIntByUint64FuzzTest") { - module_out_path = "arkcompiler/ets_runtime" + module_out_path = fuzz_test_output_path fuzz_config_file = "//arkcompiler/ets_runtime/test/fuzztest/newbigintbyuint64_fuzzer" diff --git a/test/fuzztest/notifyapplicationstate_fuzzer/BUILD.gn b/test/fuzztest/notifyapplicationstate_fuzzer/BUILD.gn index a8079b6569..876702fa55 100644 --- a/test/fuzztest/notifyapplicationstate_fuzzer/BUILD.gn +++ b/test/fuzztest/notifyapplicationstate_fuzzer/BUILD.gn @@ -19,7 +19,7 @@ import("//build/ohos.gni") ####################################fuzztest################################## ohos_fuzztest("NotifyApplicationStateFuzzTest") { - module_out_path = "arkcompiler/ets_runtime" + module_out_path = fuzz_test_output_path fuzz_config_file = "$js_root/test/fuzztest/notifyapplicationstate_fuzzer" diff --git a/test/fuzztest/notifyidletime_fuzzer/BUILD.gn b/test/fuzztest/notifyidletime_fuzzer/BUILD.gn index 799902c393..a58fda5b86 100644 --- a/test/fuzztest/notifyidletime_fuzzer/BUILD.gn +++ b/test/fuzztest/notifyidletime_fuzzer/BUILD.gn @@ -19,7 +19,7 @@ import("//build/ohos.gni") ####################################fuzztest################################## ohos_fuzztest("NotifyIdleTimeFuzzTest") { - module_out_path = "arkcompiler/ets_runtime" + module_out_path = fuzz_test_output_path fuzz_config_file = "$js_root/test/fuzztest/notifyidletime_fuzzer" diff --git a/test/fuzztest/numberrefnewdouble_fuzzer/BUILD.gn b/test/fuzztest/numberrefnewdouble_fuzzer/BUILD.gn index 7ae308b0b5..34248b6a53 100644 --- a/test/fuzztest/numberrefnewdouble_fuzzer/BUILD.gn +++ b/test/fuzztest/numberrefnewdouble_fuzzer/BUILD.gn @@ -19,7 +19,7 @@ import("//build/ohos.gni") ##################################fuzztest##################################### ohos_fuzztest("NumberRefNewDoubleFuzzTest") { - module_out_path = "arkcompiler/ets_runtime" + module_out_path = fuzz_test_output_path fuzz_config_file = "//arkcompiler/ets_runtime/test/fuzztest/numberrefnewdouble_fuzzer" diff --git a/test/fuzztest/numberrefnewint32_fuzzer/BUILD.gn b/test/fuzztest/numberrefnewint32_fuzzer/BUILD.gn index 291d264888..d91034512f 100644 --- a/test/fuzztest/numberrefnewint32_fuzzer/BUILD.gn +++ b/test/fuzztest/numberrefnewint32_fuzzer/BUILD.gn @@ -19,7 +19,7 @@ import("//build/ohos.gni") ##################################fuzztest##################################### ohos_fuzztest("NumberRefNewInt32FuzzTest") { - module_out_path = "arkcompiler/ets_runtime" + module_out_path = fuzz_test_output_path fuzz_config_file = "//arkcompiler/ets_runtime/test/fuzztest/numberrefnewint32_fuzzer" diff --git a/test/fuzztest/numberrefnewint64_fuzzer/BUILD.gn b/test/fuzztest/numberrefnewint64_fuzzer/BUILD.gn index c1de609b34..a32f8dfae0 100644 --- a/test/fuzztest/numberrefnewint64_fuzzer/BUILD.gn +++ b/test/fuzztest/numberrefnewint64_fuzzer/BUILD.gn @@ -19,7 +19,7 @@ import("//build/ohos.gni") ##################################fuzztest##################################### ohos_fuzztest("NumberRefNewInt64FuzzTest") { - module_out_path = "arkcompiler/ets_runtime" + module_out_path = fuzz_test_output_path fuzz_config_file = "//arkcompiler/ets_runtime/test/fuzztest/numberrefnewint64_fuzzer" diff --git a/test/fuzztest/numberrefnewuint32_fuzzer/BUILD.gn b/test/fuzztest/numberrefnewuint32_fuzzer/BUILD.gn index e30192fe5e..2f4a12b13b 100644 --- a/test/fuzztest/numberrefnewuint32_fuzzer/BUILD.gn +++ b/test/fuzztest/numberrefnewuint32_fuzzer/BUILD.gn @@ -19,7 +19,7 @@ import("//build/ohos.gni") ##################################fuzztest##################################### ohos_fuzztest("NumberRefNewUint32FuzzTest") { - module_out_path = "arkcompiler/ets_runtime" + module_out_path = fuzz_test_output_path fuzz_config_file = "//arkcompiler/ets_runtime/test/fuzztest/numberrefnewuint32_fuzzer" diff --git a/test/fuzztest/objectdelete_fuzzer/BUILD.gn b/test/fuzztest/objectdelete_fuzzer/BUILD.gn index ebe45a3f43..54e2bf39ea 100644 --- a/test/fuzztest/objectdelete_fuzzer/BUILD.gn +++ b/test/fuzztest/objectdelete_fuzzer/BUILD.gn @@ -19,7 +19,7 @@ import("//build/ohos.gni") ####################################fuzztest################################## ohos_fuzztest("ObjectDeleteFuzzTest") { - module_out_path = "arkcompiler/ets_runtime" + module_out_path = fuzz_test_output_path fuzz_config_file = "//arkcompiler/ets_runtime/test/fuzztest/objectdelete_fuzzer" diff --git a/test/fuzztest/objectget_fuzzer/BUILD.gn b/test/fuzztest/objectget_fuzzer/BUILD.gn index 83b817dbeb..4dbbdfddf6 100644 --- a/test/fuzztest/objectget_fuzzer/BUILD.gn +++ b/test/fuzztest/objectget_fuzzer/BUILD.gn @@ -19,7 +19,7 @@ import("//build/ohos.gni") ####################################fuzztest################################## ohos_fuzztest("ObjectGetFuzzTest") { - module_out_path = "arkcompiler/ets_runtime" + module_out_path = fuzz_test_output_path fuzz_config_file = "//arkcompiler/ets_runtime/test/fuzztest/objectget_fuzzer" diff --git a/test/fuzztest/objecthas_fuzzer/BUILD.gn b/test/fuzztest/objecthas_fuzzer/BUILD.gn index 3e2f568f8d..c0bd1aae5a 100644 --- a/test/fuzztest/objecthas_fuzzer/BUILD.gn +++ b/test/fuzztest/objecthas_fuzzer/BUILD.gn @@ -19,7 +19,7 @@ import("//build/ohos.gni") ####################################fuzztest################################## ohos_fuzztest("ObjectHasFuzzTest") { - module_out_path = "arkcompiler/ets_runtime" + module_out_path = fuzz_test_output_path fuzz_config_file = "//arkcompiler/ets_runtime/test/fuzztest/objecthas_fuzzer" diff --git a/test/fuzztest/objectset_fuzzer/BUILD.gn b/test/fuzztest/objectset_fuzzer/BUILD.gn index a4e8c41938..dd10c3ea6f 100644 --- a/test/fuzztest/objectset_fuzzer/BUILD.gn +++ b/test/fuzztest/objectset_fuzzer/BUILD.gn @@ -19,7 +19,7 @@ import("//build/ohos.gni") ####################################fuzztest################################## ohos_fuzztest("ObjectSetFuzzTest") { - module_out_path = "arkcompiler/ets_runtime" + module_out_path = fuzz_test_output_path fuzz_config_file = "//arkcompiler/ets_runtime/test/fuzztest/objectset_fuzzer" diff --git a/test/fuzztest/setcpusamplinginterval_fuzzer/BUILD.gn b/test/fuzztest/setcpusamplinginterval_fuzzer/BUILD.gn index 6c98181a00..decc7c5419 100644 --- a/test/fuzztest/setcpusamplinginterval_fuzzer/BUILD.gn +++ b/test/fuzztest/setcpusamplinginterval_fuzzer/BUILD.gn @@ -19,7 +19,7 @@ import("//build/ohos.gni") ####################################fuzztest################################## ohos_fuzztest("SetCpuSamplingIntervalFuzzTest") { - module_out_path = "arkcompiler/ets_runtime" + module_out_path = fuzz_test_output_path fuzz_config_file = "$js_root/test/fuzztest/setcpusamplinginterval_fuzzer" diff --git a/test/fuzztest/setnativepointerfield_fuzzer/BUILD.gn b/test/fuzztest/setnativepointerfield_fuzzer/BUILD.gn index d9a61f5c96..4f6207a47a 100644 --- a/test/fuzztest/setnativepointerfield_fuzzer/BUILD.gn +++ b/test/fuzztest/setnativepointerfield_fuzzer/BUILD.gn @@ -19,7 +19,7 @@ import("//build/ohos.gni") ####################################fuzztest################################## ohos_fuzztest("SetNativePointerFieldFuzzTest") { - module_out_path = "arkcompiler/ets_runtime" + module_out_path = fuzz_test_output_path fuzz_config_file = "//arkcompiler/ets_runtime/test/fuzztest/setnativepointerfield_fuzzer" diff --git a/test/fuzztest/setnativepointerfieldcount_fuzzer/BUILD.gn b/test/fuzztest/setnativepointerfieldcount_fuzzer/BUILD.gn index 7ea101513c..5062d89902 100644 --- a/test/fuzztest/setnativepointerfieldcount_fuzzer/BUILD.gn +++ b/test/fuzztest/setnativepointerfieldcount_fuzzer/BUILD.gn @@ -19,7 +19,7 @@ import("//build/ohos.gni") ####################################fuzztest################################## ohos_fuzztest("SetNativePointerFieldCountFuzzTest") { - module_out_path = "arkcompiler/ets_runtime" + module_out_path = fuzz_test_output_path fuzz_config_file = "$js_root/test/fuzztest/setnativepointerfieldcount_fuzzer" diff --git a/test/fuzztest/snapshotserializebuiltins_fuzzer/BUILD.gn b/test/fuzztest/snapshotserializebuiltins_fuzzer/BUILD.gn index 29e86c747d..0e3bf282b5 100644 --- a/test/fuzztest/snapshotserializebuiltins_fuzzer/BUILD.gn +++ b/test/fuzztest/snapshotserializebuiltins_fuzzer/BUILD.gn @@ -19,7 +19,7 @@ import("//build/ohos.gni") ####################################fuzztest################################## ohos_fuzztest("SnapshotSerializeBuiltinsFuzzTest") { - module_out_path = "arkcompiler/ets_runtime" + module_out_path = fuzz_test_output_path fuzz_config_file = "//arkcompiler/ets_runtime/test/fuzztest/snapshotserializebuiltins_fuzzer" diff --git a/test/fuzztest/snapshotserializedeserialize_fuzzer/BUILD.gn b/test/fuzztest/snapshotserializedeserialize_fuzzer/BUILD.gn index af8d5a41a7..8a4546b375 100644 --- a/test/fuzztest/snapshotserializedeserialize_fuzzer/BUILD.gn +++ b/test/fuzztest/snapshotserializedeserialize_fuzzer/BUILD.gn @@ -19,7 +19,7 @@ import("//build/ohos.gni") ####################################fuzztest################################## ohos_fuzztest("SnapshotSerializeDeserializeFuzzTest") { - module_out_path = "arkcompiler/ets_runtime" + module_out_path = fuzz_test_output_path fuzz_config_file = "//arkcompiler/ets_runtime/test/fuzztest/snapshotserializedeserialize_fuzzer" diff --git a/test/fuzztest/snapshotserializehugeobject_fuzzer/BUILD.gn b/test/fuzztest/snapshotserializehugeobject_fuzzer/BUILD.gn index 6c74364132..1ba8b0c597 100644 --- a/test/fuzztest/snapshotserializehugeobject_fuzzer/BUILD.gn +++ b/test/fuzztest/snapshotserializehugeobject_fuzzer/BUILD.gn @@ -19,7 +19,7 @@ import("//build/ohos.gni") ####################################fuzztest################################## ohos_fuzztest("SnapshotSerializeHugeObjectFuzzTest") { - module_out_path = "arkcompiler/ets_runtime" + module_out_path = fuzz_test_output_path fuzz_config_file = "//arkcompiler/ets_runtime/test/fuzztest/snapshotserializehugeobject_fuzzer" diff --git a/test/fuzztest/snapshotserializerange_fuzzer/BUILD.gn b/test/fuzztest/snapshotserializerange_fuzzer/BUILD.gn index 7b4de74c0a..06df18b59f 100644 --- a/test/fuzztest/snapshotserializerange_fuzzer/BUILD.gn +++ b/test/fuzztest/snapshotserializerange_fuzzer/BUILD.gn @@ -19,7 +19,7 @@ import("//build/ohos.gni") ####################################fuzztest################################## ohos_fuzztest("SnapshotSerializeRangeFuzzTest") { - module_out_path = "arkcompiler/ets_runtime" + module_out_path = fuzz_test_output_path fuzz_config_file = "//arkcompiler/ets_runtime/test/fuzztest/snapshotserializerange_fuzzer" diff --git a/test/fuzztest/startcpuprofilerforfile_fuzzer/BUILD.gn b/test/fuzztest/startcpuprofilerforfile_fuzzer/BUILD.gn index 9d5d98241f..14c862392c 100644 --- a/test/fuzztest/startcpuprofilerforfile_fuzzer/BUILD.gn +++ b/test/fuzztest/startcpuprofilerforfile_fuzzer/BUILD.gn @@ -19,7 +19,7 @@ import("//build/ohos.gni") ####################################fuzztest################################## ohos_fuzztest("StartCpuProfilerForFileFuzzTest") { - module_out_path = "arkcompiler/ets_runtime" + module_out_path = fuzz_test_output_path fuzz_config_file = "//arkcompiler/ets_runtime/test/fuzztest/startcpuprofilerforfile_fuzzer" diff --git a/test/fuzztest/startsampling_fuzzer/BUILD.gn b/test/fuzztest/startsampling_fuzzer/BUILD.gn index 8e7ba473c3..ec1daf6baf 100644 --- a/test/fuzztest/startsampling_fuzzer/BUILD.gn +++ b/test/fuzztest/startsampling_fuzzer/BUILD.gn @@ -19,7 +19,7 @@ import("//build/ohos.gni") ####################################fuzztest################################## ohos_fuzztest("StartSamplingFuzzTest") { - module_out_path = "arkcompiler/ets_runtime" + module_out_path = fuzz_test_output_path fuzz_config_file = "$js_root/test/fuzztest/startsampling_fuzzer" diff --git a/test/fuzztest/stopsampling_fuzzer/BUILD.gn b/test/fuzztest/stopsampling_fuzzer/BUILD.gn index d85d4673d6..f1e31453fa 100644 --- a/test/fuzztest/stopsampling_fuzzer/BUILD.gn +++ b/test/fuzztest/stopsampling_fuzzer/BUILD.gn @@ -19,7 +19,7 @@ import("//build/ohos.gni") ####################################fuzztest################################## ohos_fuzztest("StopSamplingFuzzTest") { - module_out_path = "arkcompiler/ets_runtime" + module_out_path = fuzz_test_output_path fuzz_config_file = "$js_root/test/fuzztest/stopsampling_fuzzer" diff --git a/test/fuzztest/stringrefnewfromutf8_fuzzer/BUILD.gn b/test/fuzztest/stringrefnewfromutf8_fuzzer/BUILD.gn index 8576789051..a04fda9492 100644 --- a/test/fuzztest/stringrefnewfromutf8_fuzzer/BUILD.gn +++ b/test/fuzztest/stringrefnewfromutf8_fuzzer/BUILD.gn @@ -19,7 +19,7 @@ import("//build/ohos.gni") ##################################fuzztest##################################### ohos_fuzztest("StringRefNewFromUtf8FuzzTest") { - module_out_path = "arkcompiler/ets_runtime" + module_out_path = fuzz_test_output_path fuzz_config_file = "//arkcompiler/ets_runtime/test/fuzztest/stringrefnewfromutf8_fuzzer" diff --git a/test/fuzztest/stringrefwriteutf8_fuzzer/BUILD.gn b/test/fuzztest/stringrefwriteutf8_fuzzer/BUILD.gn index 8757b2fe82..c071799a92 100644 --- a/test/fuzztest/stringrefwriteutf8_fuzzer/BUILD.gn +++ b/test/fuzztest/stringrefwriteutf8_fuzzer/BUILD.gn @@ -19,7 +19,7 @@ import("//build/ohos.gni") ##################################fuzztest##################################### ohos_fuzztest("StringRefWriteUtf8FuzzTest") { - module_out_path = "arkcompiler/ets_runtime" + module_out_path = fuzz_test_output_path fuzz_config_file = "//arkcompiler/ets_runtime/test/fuzztest/stringrefwriteutf8_fuzzer" diff --git a/test/fuzztest/uint16arrayrefnew_fuzzer/BUILD.gn b/test/fuzztest/uint16arrayrefnew_fuzzer/BUILD.gn index 9fd4cfd81f..6dfb21a8c2 100644 --- a/test/fuzztest/uint16arrayrefnew_fuzzer/BUILD.gn +++ b/test/fuzztest/uint16arrayrefnew_fuzzer/BUILD.gn @@ -19,7 +19,7 @@ import("//build/ohos.gni") ##################################fuzztest##################################### ohos_fuzztest("Uint16ArrayRefNewFuzzTest") { - module_out_path = "arkcompiler/ets_runtime" + module_out_path = fuzz_test_output_path fuzz_config_file = "//arkcompiler/ets_runtime/test/fuzztest/uint16arrayrefnew_fuzzer" diff --git a/test/fuzztest/uint32arrayrefnew_fuzzer/BUILD.gn b/test/fuzztest/uint32arrayrefnew_fuzzer/BUILD.gn index c31bf5f9df..082bb301a7 100644 --- a/test/fuzztest/uint32arrayrefnew_fuzzer/BUILD.gn +++ b/test/fuzztest/uint32arrayrefnew_fuzzer/BUILD.gn @@ -19,7 +19,7 @@ import("//build/ohos.gni") ##################################fuzztest##################################### ohos_fuzztest("Uint32ArrayRefNewFuzzTest") { - module_out_path = "arkcompiler/ets_runtime" + module_out_path = fuzz_test_output_path fuzz_config_file = "//arkcompiler/ets_runtime/test/fuzztest/uint32arrayrefnew_fuzzer" diff --git a/test/fuzztest/uint8arrayrefnew_fuzzer/BUILD.gn b/test/fuzztest/uint8arrayrefnew_fuzzer/BUILD.gn index f127324453..c144ed3562 100644 --- a/test/fuzztest/uint8arrayrefnew_fuzzer/BUILD.gn +++ b/test/fuzztest/uint8arrayrefnew_fuzzer/BUILD.gn @@ -19,7 +19,7 @@ import("//build/ohos.gni") ##################################fuzztest##################################### ohos_fuzztest("Uint8ArrayRefNewFuzzTest") { - module_out_path = "arkcompiler/ets_runtime" + module_out_path = fuzz_test_output_path fuzz_config_file = "//arkcompiler/ets_runtime/test/fuzztest/uint8arrayrefnew_fuzzer" diff --git a/test/fuzztest/uint8clampedarrayrefnew_fuzzer/BUILD.gn b/test/fuzztest/uint8clampedarrayrefnew_fuzzer/BUILD.gn index 1310706aa8..e131f15ef0 100644 --- a/test/fuzztest/uint8clampedarrayrefnew_fuzzer/BUILD.gn +++ b/test/fuzztest/uint8clampedarrayrefnew_fuzzer/BUILD.gn @@ -19,7 +19,7 @@ import("//build/ohos.gni") ##################################fuzztest##################################### ohos_fuzztest("Uint8ClampedArrayRefNewFuzzTest") { - module_out_path = "arkcompiler/ets_runtime" + module_out_path = fuzz_test_output_path fuzz_config_file = "//arkcompiler/ets_runtime/test/fuzztest/uint8clampedarrayrefnew_fuzzer"