From b5c2cd02986e2c4a7abf1d7b9b1a021dd937f3f6 Mon Sep 17 00:00:00 2001 From: Andrew Zaborowski Date: Thu, 15 Mar 2018 12:06:58 +0100 Subject: [PATCH] autotests: Check connectivity in TTLS test similar to TLS test --- autotests/testEAP-TTLS/connection_test.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/autotests/testEAP-TTLS/connection_test.py b/autotests/testEAP-TTLS/connection_test.py index a1505dbd..f721de78 100644 --- a/autotests/testEAP-TTLS/connection_test.py +++ b/autotests/testEAP-TTLS/connection_test.py @@ -7,6 +7,7 @@ sys.path.append('../util') import iwd from iwd import IWD from iwd import NetworkType +import testutil class Test(unittest.TestCase): @@ -39,6 +40,9 @@ class Test(unittest.TestCase): condition = 'obj.connected' wd.wait_for_object_condition(ordered_network.network_object, condition) + testutil.test_iface_operstate() + testutil.test_ifaces_connected() + device.disconnect() condition = 'not obj.connected'