From 73a644a46529d271ae4fde8adfb598ff480c41c8 Mon Sep 17 00:00:00 2001 From: huaqingsimeng <1004904143@qq.com> Date: Thu, 11 May 2023 09:16:48 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E9=97=A8=E7=A6=81=E7=BC=96?= =?UTF-8?q?=E8=AF=91fuzztest=E6=A6=82=E7=8E=87=E6=80=A7=E8=A7=A6=E5=8F=91c?= =?UTF-8?q?opy=5Ffile=E6=96=87=E4=BB=B6=E5=A4=B1=E8=B4=A5=E9=97=AE?= =?UTF-8?q?=E9=A2=98,=E9=94=99=E8=AF=AF=E7=A0=81=2017=E3=80=82=20=E8=A7=A3?= =?UTF-8?q?=E5=86=B3=E6=96=B9=E6=B3=95=EF=BC=9A=E5=B0=86=E7=9B=B8=E5=AF=B9?= =?UTF-8?q?=E8=B7=AF=E5=BE=84=E6=94=B9=E4=B8=BA=E7=BB=9D=E5=AF=B9=E8=B7=AF?= =?UTF-8?q?=E5=BE=84?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: huaqingsimeng --- app_file_service.gni | 2 ++ test/fuzztest/BUILD.gn | 4 +++- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/app_file_service.gni b/app_file_service.gni index e97d14426..3f76d0574 100644 --- a/app_file_service.gni +++ b/app_file_service.gni @@ -16,3 +16,5 @@ utils_system_safwk_path = "//utils/system/safwk" path_base = "//commonlibrary/c_utils/base" path_napi = "//foundation/arkui/napi" app_file_service_path = "//foundation/filemanagement/app_file_service" +app_file_service_fuzztest = + "//foundation/filemanagement/app_file_service/test/fuzztest" diff --git a/test/fuzztest/BUILD.gn b/test/fuzztest/BUILD.gn index cb07dfdcf..f0e421baf 100644 --- a/test/fuzztest/BUILD.gn +++ b/test/fuzztest/BUILD.gn @@ -11,12 +11,14 @@ # See the License for the specific language governing permissions and # limitations under the License. +import("//foundation/filemanagement/app_file_service/app_file_service.gni") + group("fuzztest") { testonly = true deps = [] deps += [ # deps file - "remotefileshare_fuzzer:RemoteFileShareFuzzTest", + "${app_file_service_fuzztest}/remotefileshare_fuzzer:RemoteFileShareFuzzTest", ] } -- Gitee