mirror of
https://git.kernel.org/pub/scm/network/wireless/iwd.git
synced 2024-11-25 01:19:23 +01:00
auto-t: Add GCMP|CCMP-256 to WPA2 test
This commit is contained in:
parent
2f64f0d080
commit
3f60bd7e63
@ -54,6 +54,18 @@ class Test(unittest.TestCase):
|
|||||||
self.hostapd.wait_for_event("AP-ENABLED")
|
self.hostapd.wait_for_event("AP-ENABLED")
|
||||||
self.validate_connection_success(self.wd)
|
self.validate_connection_success(self.wd)
|
||||||
|
|
||||||
|
def test_gcmp_256(self):
|
||||||
|
self.hostapd.set_value('rsn_pairwise', 'GCMP-256')
|
||||||
|
self.hostapd.reload()
|
||||||
|
self.hostapd.wait_for_event("AP-ENABLED")
|
||||||
|
self.validate_connection_success(self.wd)
|
||||||
|
|
||||||
|
def test_ccmp_256(self):
|
||||||
|
self.hostapd.set_value('rsn_pairwise', 'CCMP-256')
|
||||||
|
self.hostapd.reload()
|
||||||
|
self.hostapd.wait_for_event("AP-ENABLED")
|
||||||
|
self.validate_connection_success(self.wd)
|
||||||
|
|
||||||
def setUp(self):
|
def setUp(self):
|
||||||
self.wd = IWD(True)
|
self.wd = IWD(True)
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user