generic-poky/scripts/lib/compatlayer/context.py

15 lines
375 B
Python

# 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 CompatLayerTestContext(OETestContext):
def __init__(self, td=None, logger=None, layer=None):
super(CompatLayerTestContext, self).__init__(td, logger)
self.layer = layer