From 5f57fd0b08f01a5d50787186f64d62d901a71ce0 Mon Sep 17 00:00:00 2001 From: Mariano Lopez Date: Wed, 7 Dec 2016 13:35:43 +0000 Subject: 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 Signed-off-by: Richard Purdie --- meta/lib/oeqa/runtime/context.py | 2 ++ 1 file changed, 2 insertions(+) (limited to 'meta/lib/oeqa/runtime/context.py') diff --git a/meta/lib/oeqa/runtime/context.py b/meta/lib/oeqa/runtime/context.py index 496730ddbe..10a8872871 100644 --- a/meta/lib/oeqa/runtime/context.py +++ b/meta/lib/oeqa/runtime/context.py @@ -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) -- cgit v1.2.3-54-g00ecf