From 089e7ca372cee1bc48835ff3e9993f8070b23160 Mon Sep 17 00:00:00 2001 From: Jouni Malinen Date: Sun, 29 Nov 2015 20:57:26 +0200 Subject: [PATCH] tests: Skip dbus_connect_eap if altsubject_match is not supported This test case fails with the current internal TLS client implementation since the needed altsubject_match parameter is not yet supported. Signed-off-by: Jouni Malinen --- tests/hwsim/test_dbus.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/hwsim/test_dbus.py b/tests/hwsim/test_dbus.py index a85c33c8f..5d1e0796c 100644 --- a/tests/hwsim/test_dbus.py +++ b/tests/hwsim/test_dbus.py @@ -22,6 +22,7 @@ from wpasupplicant import WpaSupplicant from utils import HwsimSkip, alloc_fail, fail_test from p2p_utils import * from test_ap_tdls import connect_2sta_open +from test_ap_eap import check_altsubject_match_support WPAS_DBUS_SERVICE = "fi.w1.wpa_supplicant1" WPAS_DBUS_PATH = "/fi/w1/wpa_supplicant1" @@ -1407,6 +1408,7 @@ def test_dbus_while_not_connected(dev, apdev): def test_dbus_connect_eap(dev, apdev): """D-Bus AddNetwork and connect to EAP network""" + check_altsubject_match_support(dev[0]) (bus,wpas_obj,path,if_obj) = prepare_dbus(dev[0]) iface = dbus.Interface(if_obj, WPAS_DBUS_IFACE)