From 75a8e0bf4cc4c090db13ba00413e3bccf2ccba87 Mon Sep 17 00:00:00 2001 From: wuguangzhao Date: Thu, 23 Jan 2025 15:41:14 +0800 Subject: [PATCH] =?UTF-8?q?=E6=8E=92=E9=99=A4=E4=B8=80=E4=B8=AA=E6=B5=8B?= =?UTF-8?q?=E8=AF=95=E7=94=A8=E4=BE=8B=EF=BC=8C=E4=BF=AE=E5=A4=8Dthrift?= =?UTF-8?q?=E6=B5=8B=E8=AF=95=E4=B8=8D=E9=80=9A=E8=BF=87=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: wuguangzhao --- thirdparty/thrift/HPKCHECK | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/thirdparty/thrift/HPKCHECK b/thirdparty/thrift/HPKCHECK index c85ca540..a32bd6a1 100644 --- a/thirdparty/thrift/HPKCHECK +++ b/thirdparty/thrift/HPKCHECK @@ -15,7 +15,9 @@ openharmonycheck() { return 1 fi cd ${builddir}/${ARCH}-build - ctest >> ${logfile} 2>&1 + # 把需要python的用例排除 + ignore_test="StalenessCheckTest" + ctest -E $ignore_test >> ${logfile} 2>&1 res=$? if [ $res -ne 0 ] then -- Gitee