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