summaryrefslogtreecommitdiffstats
path: root/meta/lib/oeqa/runtime/context.py
diff options
context:
space:
mode:
authorMariano Lopez <mariano.lopez@linux.intel.com>2016-12-07 13:35:43 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2017-01-23 12:05:20 +0000
commit5f57fd0b08f01a5d50787186f64d62d901a71ce0 (patch)
tree95396cf5ce652eab60b8c9dd550af0e4b78828ac /meta/lib/oeqa/runtime/context.py
parentbfe20fd23cb1efec9289ba5a2486234e6c8a0549 (diff)
downloadpoky-5f57fd0b08f01a5d50787186f64d62d901a71ce0.tar.gz
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>
Diffstat (limited to 'meta/lib/oeqa/runtime/context.py')
-rw-r--r--meta/lib/oeqa/runtime/context.py2
1 files changed, 2 insertions, 0 deletions
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
9 9
10class OERuntimeTestContext(OETestContext): 10class OERuntimeTestContext(OETestContext):
11 loaderClass = OERuntimeTestLoader 11 loaderClass = OERuntimeTestLoader
12 runtime_files_dir = os.path.join(
13 os.path.dirname(os.path.abspath(__file__)), "files")
12 14
13 def __init__(self, td, logger, target, packages_manifest): 15 def __init__(self, td, logger, target, packages_manifest):
14 super(OERuntimeTestContext, self).__init__(td, logger) 16 super(OERuntimeTestContext, self).__init__(td, logger)