[PATCH] arm/oeqa/optee.py: only run regression tests on qemu machines
Jon Mason <[email protected]>
| Newsgroups | org.yoctoproject.lists.meta-arm |
|---|---|
| Message-ID | <[email protected]> |
The OP-TEE default tests are taking over 30 minutes, which is causing CI to overall take several hours. For QEMU machines, reduce the tests to just be the regression tests, which reduces the CI time by over 30%. Signed-off-by: Jon Mason <[email protected]> --- meta-arm/lib/oeqa/runtime/cases/optee.py | 17 ++++++++++++++++- 1 file changed, 16 insertions(+), 1 deletion(-) diff --git a/meta-arm/lib/oeqa/runtime/cases/optee.py b/meta-arm/lib/oeqa/runtime/cases/optee.py index 077eb6a47542..20354c530ea6 100644 --- a/meta-arm/lib/oeqa/runtime/cases/optee.py +++ b/meta-arm/lib/oeqa/runtime/cases/optee.py @@ -7,14 +7,17 @@ import os from oeqa.runtime.case import OERuntimeTestCase from oeqa.runtime.decorator.package import OEHasPackage from oeqa.core.decorator.oetimeout import OETimeout +from oeqa.core.decorator.data import skipIfQemu +from oeqa.core.decorator.data import skipIfNotQemu class OpteeTestSuite(OERuntimeTestCase): """ Run OP-TEE tests (xtest). """ + @skipIfQemu() @OETimeout(2700) @OEHasPackage(['optee-test']) - def test_opteetest_xtest(self): + def test_opteetest_xtest_all(self): # clear storage before executing tests cmd = "xtest --clear-storage || true" status, output = self.target.run(cmd, timeout=60) @@ -22,3 +25,15 @@ class OpteeTestSuite(OERuntimeTestCase): cmd = "xtest" status, output = self.target.run(cmd, timeout=1200) self.assertEqual(status, 0, msg='\n'.join([cmd, output])) + + @skipIfNotQemu() + @OETimeout(2700) + @OEHasPackage(['optee-test']) + def test_opteetest_xtest_regression(self): + # clear storage before executing tests + cmd = "xtest --clear-storage || true" + status, output = self.target.run(cmd, timeout=60) + self.assertEqual(status, 0, msg='\n'.join([cmd, output])) + cmd = "xtest -t regression" + status, output = self.target.run(cmd, timeout=1200) + self.assertEqual(status, 0, msg='\n'.join([cmd, output])) -- 2.39.5 (Apple Git-154)