iwd/autotests
Andrew Zaborowski c73575585b autotests: Remove del wd at the end function pattern
Don't use del wd to dereference the IWD instance at the end of the function
where it has been defined in the first place as at this point wd is about
to have its reference count decreased anyway (the variable's scope is
ending) so it's pointless (but didn't hurt).

Relying on the __del__ destructor to kill the IWD process in those tests
it has been started in the constructor is a bit of a hack in the first
place, because the destructor is called on garbage collection and even
through CPython does this on the refcount reaching 0, this is not
documented and there's no guideline on when it should happen or if it
should happen at all.  So it could be argued that we should keep the del
wd statemenets to be able to easily replace all of them with a call to a
new method.  But most of them are not placed so that they're guaranteed
to happen on test success or failure.  It would probably be easier to do
this and other housekeeping in a base class and make the tests its
subclasses.  Also some of these tests don't really need to launch iwd
themselves, since IWD now tracks changes in the known network files I
think IWD only really needs to be killed between tests when main.conf
changes.
2019-04-22 18:20:01 -05:00
..
misc auto-t: Add testEAP-PEAP-SIM 2018-05-15 14:32:51 -05:00
testAP auto-t: Disable MAC rand. for tests with trans. medium 2019-01-16 13:20:04 -06:00
testAPRoam autotests: Use hostapd_map in place of wiphy_map 2019-04-22 18:16:14 -05:00
testAdHoc autotests: Remove del wd at the end function pattern 2019-04-22 18:20:01 -05:00
testBSSBlacklist autotests: Remove del wd at the end function pattern 2019-04-22 18:20:01 -05:00
testConnectAutoconnect autotests: Remove del wd at the end function pattern 2019-04-22 18:20:01 -05:00
testDisconnectByAP auto-t: update tests to use get_ordered_network call 2018-12-14 13:47:00 -06:00
testEAP-AKA auto-t: update tests to use get_ordered_network call 2018-12-14 13:47:00 -06:00
testEAP-AKA-ofono auto-t: update tests to use get_ordered_network call 2018-12-14 13:47:00 -06:00
testEAP-AKA-prime auto-t: update tests to use get_ordered_network call 2018-12-14 13:47:00 -06:00
testEAP-AKA-prime-ofono auto-t: update tests to use get_ordered_network call 2018-12-14 13:47:00 -06:00
testEAP-MSCHAPV2 auto-t: update tests to use get_ordered_network call 2018-12-14 13:47:00 -06:00
testEAP-PEAP autotests: Remove del wd at the end function pattern 2019-04-22 18:20:01 -05:00
testEAP-PEAP-GTC autotests: Remove del wd at the end function pattern 2019-04-22 18:20:01 -05:00
testEAP-PEAP-MSCHAPv2 autotests: Remove del wd at the end function pattern 2019-04-22 18:20:01 -05:00
testEAP-PEAP-SIM autotests: Remove del wd at the end function pattern 2019-04-22 18:20:01 -05:00
testEAP-PWD autotests: Remove del wd at the end function pattern 2019-04-22 18:20:01 -05:00
testEAP-SIM auto-t: update tests to use get_ordered_network call 2018-12-14 13:47:00 -06:00
testEAP-SIM-ofono auto-t: update tests to use get_ordered_network call 2018-12-14 13:47:00 -06:00
testEAP-TLS auto-t: update tests to use get_ordered_network call 2018-12-14 13:47:00 -06:00
testEAP-TLS-Frag auto-t: update tests to use get_ordered_network call 2018-12-14 13:47:00 -06:00
testEAP-TLSwithMFPC auto-t: update tests to use get_ordered_network call 2018-12-14 13:47:00 -06:00
testEAP-TLSwithMFPR auto-t: update tests to use get_ordered_network call 2018-12-14 13:47:00 -06:00
testEAP-TTLS auto-t: update tests to use get_ordered_network call 2018-12-14 13:47:00 -06:00
testEAP-TTLS-CHAP auto-t: update tests to use get_ordered_network call 2018-12-14 13:47:00 -06:00
testEAP-TTLS-EAP-MSCHAPV2 auto-t: update tests to use get_ordered_network call 2018-12-14 13:47:00 -06:00
testEAP-TTLS-Frag auto-t: update tests to use get_ordered_network call 2018-12-14 13:47:00 -06:00
testEAP-TTLS-MSCHAP autotests: Use hostapd_map in place of wiphy_map 2019-04-22 18:16:14 -05:00
testEAP-TTLS-MSCHAPv2 autotests: Remove del wd at the end function pattern 2019-04-22 18:20:01 -05:00
testEAP-TTLS-PAP auto-t: update tests to use get_ordered_network call 2018-12-14 13:47:00 -06:00
testEAP-WPS autotests: Remove del wd at the end function pattern 2019-04-22 18:20:01 -05:00
testEAP-WPS-Frag auto-t: removed ';' from many autotests 2018-12-14 13:46:23 -06:00
testFILS auto-t: FILS autotest 2019-04-22 16:27:25 -05:00
testFT-8021x-roam autotests: Use hostapd_map in place of wiphy_map 2019-04-22 18:16:14 -05:00
testFT-PSK-roam autotests: Use hostapd_map in place of wiphy_map 2019-04-22 18:16:14 -05:00
testFT-SAE-roam autotests: Use hostapd_map in place of wiphy_map 2019-04-22 18:16:14 -05:00
testHT-VHT autotests: Use hostapd_map in place of wiphy_map 2019-04-22 18:16:14 -05:00
testHiddenNetworks autotests: Remove del wd at the end function pattern 2019-04-22 18:20:01 -05:00
testKnownNetworks autotests: Remove del wd at the end function pattern 2019-04-22 18:20:01 -05:00
testMFP-Options autotests: Remove del wd at the end function pattern 2019-04-22 18:20:01 -05:00
testOWE autotests: Use hostapd_map in place of wiphy_map 2019-04-22 18:16:14 -05:00
testOpen auto-t: update tests to use get_ordered_network call 2018-12-14 13:47:00 -06:00
testPreauth-roam autotests: Use hostapd_map in place of wiphy_map 2019-04-22 18:16:14 -05:00
testRSSIAgent auto-t: Disable MAC rand. for tests with trans. medium 2019-01-16 13:20:04 -06:00
testSAE autotests: Remove del wd at the end function pattern 2019-04-22 18:20:01 -05:00
testSAQuery autotests: Use hostapd_map in place of wiphy_map 2019-04-22 18:16:14 -05:00
testSAQuery-spoofing autotests: Use hostapd_map in place of wiphy_map 2019-04-22 18:16:14 -05:00
testScan autotests: Remove del wd at the end function pattern 2019-04-22 18:20:01 -05:00
testScanKnownFreqs autotests: Remove del wd at the end function pattern 2019-04-22 18:20:01 -05:00
testWPA auto-t: update tests to use get_ordered_network call 2018-12-14 13:47:00 -06:00
testWPA2 autotests: Remove del wd at the end function pattern 2019-04-22 18:20:01 -05:00
testWPA2-SHA256 auto-t: update tests to use get_ordered_network call 2018-12-14 13:47:00 -06:00
testWPA2withMFP auto-t: update tests to use get_ordered_network call 2018-12-14 13:47:00 -06:00
util autotests: In testutil obtain interface list dynamically 2019-04-22 18:16:11 -05:00