Skip to content
Snippets Groups Projects
Commit 483845bb authored by Treehugger Robot's avatar Treehugger Robot Committed by Gerrit Code Review
Browse files

Merge "Cert: Skip LE security test in setup class"

parents ded7b79e 73072dd3
No related branches found
No related tags found
No related merge requests found
......@@ -15,6 +15,8 @@
from blueberry.tests.gd.cert import gd_base_test
from security.cert.le_security_test_lib import LeSecurityTestBase
from mobly import asserts
from mobly import test_runner
......@@ -24,10 +26,12 @@ class LeSecurityTestBb(gd_base_test.GdBaseTestClass, LeSecurityTestBase):
gd_base_test.GdBaseTestClass.setup_class(self, dut_module='SECURITY', cert_module='SECURITY')
def setup_test(self):
asserts.skip("Unhandled race condition - Flaky test")
gd_base_test.GdBaseTestClass.setup_test(self)
LeSecurityTestBase.setup_test(self, self.dut, self.cert)
def teardown_test(self):
return # test skipped
LeSecurityTestBase.teardown_test(self)
gd_base_test.GdBaseTestClass.teardown_test(self)
......
......@@ -16,6 +16,8 @@
from cert.gd_base_test import GdBaseTestClass
from security.cert.le_security_test_lib import LeSecurityTestBase
from mobly import asserts
class LeSecurityTest(GdBaseTestClass, LeSecurityTestBase):
......@@ -23,9 +25,11 @@ class LeSecurityTest(GdBaseTestClass, LeSecurityTestBase):
GdBaseTestClass.setup_class(self, dut_module='SECURITY', cert_module='SECURITY')
def setup_test(self):
asserts.skip("Unhandled race condition - Flaky test")
GdBaseTestClass.setup_test(self)
LeSecurityTestBase.setup_test(self, self.dut, self.cert)
def teardown_test(self):
return # test skipped
LeSecurityTestBase.teardown_test(self)
GdBaseTestClass.teardown_test(self)
......@@ -91,8 +91,6 @@ class LeSecurityTestBase():
address_with_type=self.cert_address)
self.cert.security.SetLeInitiatorAddressPolicy(cert_privacy_policy)
asserts.skip("Unhandled race condition - Flaky test")
def teardown_test(self):
self.dut_hci.close()
self.dut_security.close()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment