From eb8dc40360f0cfef56fb6947cc817a547d6d9bc6 Mon Sep 17 00:00:00 2001 From: Dave Cobbley Date: Tue, 14 Aug 2018 10:05:37 -0700 Subject: [Subtree] Removing import-layers directory As part of the move to subtrees, need to bring all the import layers content to the top level. Change-Id: I4a163d10898cbc6e11c27f776f60e1a470049d8f Signed-off-by: Dave Cobbley Signed-off-by: Brad Bishop --- poky/scripts/lib/checklayer/context.py | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 poky/scripts/lib/checklayer/context.py (limited to 'poky/scripts/lib/checklayer/context.py') diff --git a/poky/scripts/lib/checklayer/context.py b/poky/scripts/lib/checklayer/context.py new file mode 100644 index 0000000000..1bec2c4103 --- /dev/null +++ b/poky/scripts/lib/checklayer/context.py @@ -0,0 +1,15 @@ +# Copyright (C) 2017 Intel Corporation +# Released under the MIT license (see COPYING.MIT) + +import os +import sys +import glob +import re + +from oeqa.core.context import OETestContext + +class CheckLayerTestContext(OETestContext): + def __init__(self, td=None, logger=None, layer=None, test_software_layer_signatures=True): + super(CheckLayerTestContext, self).__init__(td, logger) + self.layer = layer + self.test_software_layer_signatures = test_software_layer_signatures -- cgit v1.2.3