diff options
Diffstat (limited to 'scripts/lib/compatlayer/context.py')
-rw-r--r-- | scripts/lib/compatlayer/context.py | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/scripts/lib/compatlayer/context.py b/scripts/lib/compatlayer/context.py new file mode 100644 index 0000000000..4932238798 --- /dev/null +++ b/scripts/lib/compatlayer/context.py | |||
@@ -0,0 +1,14 @@ | |||
1 | # Copyright (C) 2017 Intel Corporation | ||
2 | # Released under the MIT license (see COPYING.MIT) | ||
3 | |||
4 | import os | ||
5 | import sys | ||
6 | import glob | ||
7 | import re | ||
8 | |||
9 | from oeqa.core.context import OETestContext | ||
10 | |||
11 | class CompatLayerTestContext(OETestContext): | ||
12 | def __init__(self, td=None, logger=None, layer=None): | ||
13 | super(CompatLayerTestContext, self).__init__(td, logger) | ||
14 | self.layer = layer | ||