blob: 4de8f668fd2c230d78d6d48c145a408bcd4e9e67 [file] [log] [blame]
Brad Bishopd7bf8c12018-02-25 22:55:05 -05001# Copyright (C) 2017 Intel Corporation
Brad Bishopc342db32019-05-15 21:57:59 -04002#
3# SPDX-License-Identifier: MIT
4#
Brad Bishopd7bf8c12018-02-25 22:55:05 -05005
6import os
7import sys
8import glob
9import re
10
11from oeqa.core.context import OETestContext
12
13class CheckLayerTestContext(OETestContext):
14 def __init__(self, td=None, logger=None, layer=None, test_software_layer_signatures=True):
15 super(CheckLayerTestContext, self).__init__(td, logger)
16 self.layer = layer
17 self.test_software_layer_signatures = test_software_layer_signatures