From c58b2e13f0290576ebea6e5c683762827f695990 Mon Sep 17 00:00:00 2001 From: zhaogan Date: Fri, 14 Mar 2025 16:03:46 +0800 Subject: [PATCH] =?UTF-8?q?tdd=E6=95=B4=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: zhaogan --- .../innerkits/appverify/src/common/random_access_file.cpp | 2 +- interfaces/innerkits/appverify/test/BUILD.gn | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/interfaces/innerkits/appverify/src/common/random_access_file.cpp b/interfaces/innerkits/appverify/src/common/random_access_file.cpp index d654f66..873e0ed 100644 --- a/interfaces/innerkits/appverify/src/common/random_access_file.cpp +++ b/interfaces/innerkits/appverify/src/common/random_access_file.cpp @@ -213,7 +213,7 @@ long long RandomAccessFile::ReadFileFullyFromOffsetV2(char buf[], long long offs long long RandomAccessFile::ReadFileFullyFromOffsetV2(HapByteBuffer& buffer, long long offset) { if (!buffer.HasRemaining()) { - HAPVERIFY_LOG_ERROR("buffer has no remaining space"); + HAPVERIFY_LOG_ERROR("insufficient space"); return DEST_BUFFER_IS_NULL; } diff --git a/interfaces/innerkits/appverify/test/BUILD.gn b/interfaces/innerkits/appverify/test/BUILD.gn index 94f5880..a0dea6d 100644 --- a/interfaces/innerkits/appverify/test/BUILD.gn +++ b/interfaces/innerkits/appverify/test/BUILD.gn @@ -13,7 +13,7 @@ import("//build/test.gni") -module_output_path = "appverify/verify" +module_output_path = "appverify/appverify/verify" config("verify_test_config") { visibility = [ ":*" ] -- Gitee