From 556cee64d335252ad356e04e04ebc2a03f352a9f Mon Sep 17 00:00:00 2001 From: canisLupus1313 <85344032+canisLupus1313@users.noreply.github.com> Date: Wed, 19 Jan 2022 23:03:01 +0100 Subject: [PATCH] [thci] add implementation of setVrCheckSkip in THCI (#7329) --- tools/harness-thci/OpenThread.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/tools/harness-thci/OpenThread.py b/tools/harness-thci/OpenThread.py index aa8dace93..bb4a98b9a 100644 --- a/tools/harness-thci/OpenThread.py +++ b/tools/harness-thci/OpenThread.py @@ -3603,6 +3603,10 @@ class OpenThreadTHCI(object): assert state in (0, 1), state self.__executeCommand("ccm {}".format("enable" if state == 1 else "disable")) + @API + def setVrCheckSkip(self): + self.__executeCommand("tvcheck disable") + class OpenThread(OpenThreadTHCI, IThci):