Home
last modified time | relevance | path

Searched full:oeqa (Results 1 – 25 of 224) sorted by relevance

123456789

/OK3568_Linux_fs/yocto/poky/meta/lib/oeqa/selftest/cases/
H A Dselftest.py6 import oeqa.selftest
7 from oeqa.selftest.case import OESelftestTestCase
15 oeqa.selftest.__path__
23 test_module = "oeqa.selftest.cases.external-layer"
26 # Check if "external-layer.py" is in oeqa path
28 self.assertTrue(found_file, msg="Can't find %s in the oeqa path" % test_file)
30 # Import oeqa.selftest.external-layer module and search for
36 for layer_path in oeqa.selftest.__path__:
H A Dglibc.py4 from oeqa.core.decorator import OETestTag
5 from oeqa.core.case import OEPTestResultTestCase
6 from oeqa.selftest.case import OESelftestTestCase
7 from oeqa.utils.commands import bitbake, get_bb_var, runqemu
8 from oeqa.utils.nfs import unfs_server
/OK3568_Linux_fs/yocto/poky/meta/lib/oeqa/core/
H A DREADME1 = OEQA (v2) Framework =
5 This is version 2 of the OEQA framework. Base clases are located in the
6 'oeqa/core' directory and subsequent components must extend from these.
12 * oeqa/core/runner.py: Provides OETestResult and OETestRunner base
16 * oeqa/core/loader.py: Provides OETestLoader extending the unittest class.
20 * oeqa/core/case.py: Provides OETestCase base class extending
24 * oeqa/core/decorator: Provides OETestDecorator, a new class to implement
27 * oeqa/core/context: Provides OETestContext, a high-level API for
48 a unified way to run test cases. Internally it scans folders inside oeqa module in order to find
/OK3568_Linux_fs/yocto/poky/meta/classes/
H A Dtestexport.bbclass49 from oeqa.runtime.context import OERuntimeTestContext
50 from oeqa.runtime.context import OERuntimeTestContextExecutor
81 from oeqa.utils.package_manager import _get_json_file
82 from oeqa.core.utils.test import getSuiteCasesFiles
89 bb.utils.mkdirhier(os.path.join(export_path, 'lib', 'oeqa'))
95 files_to_copy = [ os.path.join('meta', 'lib', 'oeqa', 'core'),
96 os.path.join('meta', 'lib', 'oeqa', 'runtime'),
97 os.path.join('meta', 'lib', 'oeqa', 'files'),
98 os.path.join('meta', 'lib', 'oeqa', 'utils'),
112 cases_path = os.path.join(export_path, 'lib', 'oeqa', 'runtime', 'cases')
H A Dtestimage.bbclass23 # The test names are the module names in meta/lib/oeqa/runtime/cases.
31 # A layer can add its own tests in lib/oeqa/runtime, provided it extends BBPATH as normal in its la…
155 from oeqa.utils.metadata import get_layers
168 json_result_dir = os.path.join(d.getVar("LOG_DIR"), 'oeqa')
208 from oeqa.runtime.context import OERuntimeTestContext
209 from oeqa.runtime.context import OERuntimeTestContextExecutor
210 from oeqa.core.target.qemu import supported_fstypes
211 from oeqa.core.utils.test import getSuiteCases
212 from oeqa.utils import make_logger_bitbake_compatible
411 # Copy additional logs to tmp/log/oeqa so it's easier to find them
[all …]
/OK3568_Linux_fs/yocto/poky/meta/lib/oeqa/runtime/
H A Dcontext.py10 from oeqa.core.context import OETestContext, OETestContextExecutor
11 from oeqa.core.target.ssh import OESSHTarget
12 from oeqa.core.target.qemu import OEQemuTarget
13 from oeqa.utils.dump import HostDumper
15 from oeqa.runtime.loader import OERuntimeTestLoader
117 # XXX: This code tries to import modules from lib/oeqa/controllers
128 # Search oeqa.controllers module directory for and return a controller
138 # Return a list of all python modules in lib/oeqa/controllers for each
150 module = 'oeqa.controllers.' + f[:-3]
161 controllerpath = os.path.join(p, 'oeqa', 'controllers')
/OK3568_Linux_fs/yocto/poky/documentation/test-manual/
H A Dintro.rst221 ``meta/lib/oeqa/selftest/cases/``.
248 - The code for these tests resides in ``meta/lib/oeqa/runtime/cases/``.
263 - The code for these tests resides in ``meta/lib/oeqa/sdk/cases/``.
274 - The code for these tests resides in ``meta/lib/oeqa/esdk``.
285 - The code for these tests resides in ``meta/lib/oeqa/buildperf``.
307 - The tests are contained in ``lib/oeqa/buildperf/test_basic.py``.
315 For oeqa tests, testcases for each area reside in the main test
316 directory at ``meta/lib/oeqa/selftest/cases`` directory.
361 This example, taken from ``meta/lib/oeqa/selftest/cases/bblayers.py``,
367 The ``oeqa.utils.commands`` module contains Helpers which can assist
[all …]
/OK3568_Linux_fs/yocto/poky/documentation/migration-guides/
H A Drelease-notes-4.0.8.rst72 - oeqa context.py: fix --target-ip comment to include ssh port number
73 - oeqa dump.py: add error counter and stop after 5 failures
74 - oeqa qemurunner.py: add timeout to QMP calls
75 - oeqa qemurunner.py: try to avoid reading one character at a time
76 - oeqa qemurunner: read more data at a time from serial
77 - oeqa ssh.py: add connection keep alive options to ssh client
78 - oeqa ssh.py: move output prints to new line
79 - oeqa/qemurunner: do not use Popen.poll() when terminating runqemu with a signal
80 - oeqa/selftest/bbtests: Update message lookup for test_git_unpack_nonetwork_fail
81 - oeqa/selftest/locales: Add selftest for locale generation/presence
/OK3568_Linux_fs/yocto/poky/scripts/
H A Doe-selftest9 # This script runs tests defined in meta/lib/oeqa/selftest/
13 # Call the script as: "oe-selftest -a" to run all the tests in meta/lib/oeqa/selftest/
15 …layers.BitbakeLayers" will run just the BitbakeLayers class from meta/lib/oeqa/selftest/bblayers.py
33 from oeqa.utils import load_test_components
34 from oeqa.core.exception import OEQAPreRun
/OK3568_Linux_fs/yocto/poky/meta/lib/oeqa/runtime/cases/
H A Ddf.py5 from oeqa.runtime.case import OERuntimeTestCase
6 from oeqa.core.decorator.depends import OETestDepends
7 from oeqa.core.decorator.data import skipIfDataVar, skipIfInDataVar
8 from oeqa.runtime.decorator.package import OEHasPackage
H A Dxorg.py5 from oeqa.runtime.case import OERuntimeTestCase
6 from oeqa.core.decorator.depends import OETestDepends
7 from oeqa.core.decorator.data import skipIfNotFeature
8 from oeqa.runtime.decorator.package import OEHasPackage
H A Dbuildlzip.py5 from oeqa.runtime.case import OERuntimeTestCase
6 from oeqa.core.decorator.depends import OETestDepends
7 from oeqa.runtime.decorator.package import OEHasPackage
9 from oeqa.runtime.utils.targetbuildproject import TargetBuildProject
H A Dbuildgalculator.py5 from oeqa.runtime.case import OERuntimeTestCase
6 from oeqa.core.decorator.depends import OETestDepends
7 from oeqa.runtime.decorator.package import OEHasPackage
9 from oeqa.runtime.utils.targetbuildproject import TargetBuildProject
H A Dusb_hid.py1 from oeqa.runtime.case import OERuntimeTestCase
2 from oeqa.core.decorator.depends import OETestDepends
3 from oeqa.core.decorator.data import skipIfQemu
4 from oeqa.runtime.decorator.package import OEHasPackage
H A Dbuildcpio.py5 from oeqa.runtime.case import OERuntimeTestCase
6 from oeqa.core.decorator.depends import OETestDepends
7 from oeqa.runtime.decorator.package import OEHasPackage
9 from oeqa.runtime.utils.targetbuildproject import TargetBuildProject
H A Dboot.py8 from oeqa.runtime.case import OERuntimeTestCase
9 from oeqa.core.decorator.depends import OETestDepends
10 from oeqa.core.decorator.oetimeout import OETimeout
11 from oeqa.core.decorator.data import skipIfQemu
H A Dldd.py5 from oeqa.runtime.case import OERuntimeTestCase
6 from oeqa.core.decorator.depends import OETestDepends
7 from oeqa.core.decorator.data import skipIfNotFeature
8 from oeqa.runtime.decorator.package import OEHasPackage
H A Dltp_stress.py12 from oeqa.runtime.case import OERuntimeTestCase
13 from oeqa.core.decorator.depends import OETestDepends
14 from oeqa.runtime.decorator.package import OEHasPackage
15 from oeqa.core.decorator.data import skipIfQemu
16 from oeqa.utils.logparser import LtpParser
H A Dskeletoninit.py8 from oeqa.runtime.case import OERuntimeTestCase
9 from oeqa.core.decorator.depends import OETestDepends
10 from oeqa.core.decorator.data import skipIfDataVar
11 from oeqa.runtime.decorator.package import OEHasPackage
H A Dkernelmodule.py7 from oeqa.runtime.case import OERuntimeTestCase
8 from oeqa.core.decorator.depends import OETestDepends
9 from oeqa.core.decorator.data import skipIfNotFeature
10 from oeqa.runtime.decorator.package import OEHasPackage
H A Dmultilib.py5 from oeqa.runtime.case import OERuntimeTestCase
6 from oeqa.core.decorator.depends import OETestDepends
7 from oeqa.core.decorator.data import skipIfNotInDataVar
8 from oeqa.runtime.decorator.package import OEHasPackage
H A Dpam.py8 from oeqa.runtime.case import OERuntimeTestCase
9 from oeqa.core.decorator.depends import OETestDepends
10 from oeqa.core.decorator.data import skipIfNotFeature
11 from oeqa.runtime.decorator.package import OEHasPackage
/OK3568_Linux_fs/yocto/poky/meta/lib/oeqa/controllers/
H A Dtesttargetloader.py12 # Search oeqa.controllers module directory for and return a controller
22 # Return a list of all python modules in lib/oeqa/controllers for each
33 module = 'oeqa.controllers.' + f[:-3]
40 controllerpath = os.path.join(p, 'lib', 'oeqa', 'controllers')
67 from oeqa.targetcontrol import BaseTarget
/OK3568_Linux_fs/yocto/poky/meta-selftest/lib/oeqa/runtime/cases/
H A Ddnf_runtime.py1 from oeqa.core.decorator.depends import OETestDepends
2 from oeqa.runtime.cases.dnf import DnfTest
3 from oeqa.utils.httpserver import HTTPService
4 from oeqa.core.decorator.data import skipIfDataVar
11 cls.temp_dir = tempfile.TemporaryDirectory(prefix="oeqa-remotefeeds-")
/OK3568_Linux_fs/yocto/poky/meta/lib/oeqa/
H A Doetest.py8 # This provides the oeRuntimeTest base class which is inherited by all tests in meta/lib/oeqa/runti…
25 import oeqa.runtime
28 import oeqa.sdkext
31 from oeqa.utils.decorators import LogResults, gettag, getResults
184 extrapath = "lib/oeqa"
218 if testname.startswith("oeqa."):
224 testslist.append("oeqa." + type + "." + testname)
228 testslist.append("oeqa." + type + "." + testname)
232 …bb.fatal('Test %s specified in TEST_SUITES could not be found in lib/oeqa/runtime under BBPATH' % …
238 module = 'oeqa.' + type + '.' + f[:-3]
[all …]

123456789