diff mbox

tests: Skip dpp_pkex_config dpp_pkex_config2 tests correctly

Message ID 1499279107-12997-2-git-send-email-andrei.otcheretianski@intel.com
State Accepted
Headers show

Commit Message

Andrei Otcheretianski July 5, 2017, 6:25 p.m. UTC
When CONFIG_DPP is not defined these tests would fail. Skip them.

Signed-off-by: Andrei Otcheretianski <andrei.otcheretianski@intel.com>
---
 tests/hwsim/test_dpp.py | 4 ++++
 1 file changed, 4 insertions(+)

Comments

Jouni Malinen July 7, 2017, 9:02 p.m. UTC | #1
On Wed, Jul 05, 2017 at 09:25:06PM +0300, Andrei Otcheretianski wrote:
> When CONFIG_DPP is not defined these tests would fail. Skip them.

Thanks, applied.
diff mbox

Patch

diff --git a/tests/hwsim/test_dpp.py b/tests/hwsim/test_dpp.py
index e62f21b..b787e47 100644
--- a/tests/hwsim/test_dpp.py
+++ b/tests/hwsim/test_dpp.py
@@ -1250,6 +1250,8 @@  def test_dpp_pkex_bp512(dev, apdev):
 
 def test_dpp_pkex_config(dev, apdev):
     """DPP and PKEX with initiator as the configurator"""
+    check_dpp_capab(dev[1])
+
     cmd = "DPP_CONFIGURATOR_ADD"
     res = dev[1].request(cmd);
     if "FAIL" in res:
@@ -1310,6 +1312,8 @@  def run_dpp_pkex(dev, apdev, curve=None, init_extra="", check_config=False):
 
 def test_dpp_pkex_config2(dev, apdev):
     """DPP and PKEX with responder as the configurator"""
+    check_dpp_capab(dev[0])
+
     cmd = "DPP_CONFIGURATOR_ADD"
     res = dev[0].request(cmd);
     if "FAIL" in res: