oeqa/runtime/files: Move runtime files from old directory

As part of the refactor we require to move the files used
in runtime testing to the new directory. This also adds
the path to the runtime test context.

[YOCTO #10234]

(From OE-Core rev: f80c21b46f69c42ff0853bf8abd01cf0c082c346)

Signed-off-by: Mariano Lopez <mariano.lopez@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
Mariano Lopez 2016-12-07 13:35:43 +00:00 committed by Richard Purdie
parent bfe20fd23c
commit 5f57fd0b08
4 changed files with 2 additions and 0 deletions

View File

@ -9,6 +9,8 @@ from oeqa.runtime.loader import OERuntimeTestLoader
class OERuntimeTestContext(OETestContext):
loaderClass = OERuntimeTestLoader
runtime_files_dir = os.path.join(
os.path.dirname(os.path.abspath(__file__)), "files")
def __init__(self, td, logger, target, packages_manifest):
super(OERuntimeTestContext, self).__init__(td, logger)