test_module_tests.py 594 B

1234567891011121314151617181920
  1. #!/usr/bin/python
  2. #
  3. # Module tests
  4. # Copyright (c) 2014, Jouni Malinen <j@w1.fi>
  5. #
  6. # This software may be distributed under the terms of the BSD license.
  7. # See README for more details.
  8. import hostapd
  9. def test_module_wpa_supplicant(dev):
  10. """wpa_supplicant module tests"""
  11. if "OK" not in dev[0].global_request("MODULE_TESTS"):
  12. raise Exception("Module tests failed")
  13. def test_module_hostapd(dev):
  14. """hostapd module tests"""
  15. hapd_global = hostapd.HostapdGlobal()
  16. if "OK" not in hapd_global.ctrl.request("MODULE_TESTS"):
  17. raise Exception("Module tests failed")