aboutsummaryrefslogtreecommitdiffstats
path: root/meta/lib/oeqa/buildperf/__init__.py
diff options
context:
space:
mode:
authorMarkus Lehtonen <markus.lehtonen@linux.intel.com>2016-05-11 13:22:50 +0300
committerRichard Purdie <richard.purdie@linuxfoundation.org>2016-07-01 16:22:46 +0100
commit1b10ded015d4375602c6be0b98493002b984d0e5 (patch)
treeb57208e056d3e45fa47f0d6cef372269fdc00170 /meta/lib/oeqa/buildperf/__init__.py
parentcee685ca0d29b022e0665fccf58de006e7ffaef1 (diff)
downloadopenembedded-core-contrib-1b10ded015d4375602c6be0b98493002b984d0e5.tar.gz
oeqa.buildperf: add BuildPerfTest class
The new class will be used as an abstract base class for build performance tests. This implementation contains some common functionality used in multiple tests, "copied" from the build-perf-test.sh shell script. (From OE-Core rev: 35cd7363759a286e80ddca0d028db3d2bf524b17) Signed-off-by: Markus Lehtonen <markus.lehtonen@linux.intel.com> Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/lib/oeqa/buildperf/__init__.py')
-rw-r--r--meta/lib/oeqa/buildperf/__init__.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/lib/oeqa/buildperf/__init__.py b/meta/lib/oeqa/buildperf/__init__.py
index bab122e4ec..3bee5b9028 100644
--- a/meta/lib/oeqa/buildperf/__init__.py
+++ b/meta/lib/oeqa/buildperf/__init__.py
@@ -10,4 +10,4 @@
# more details.
#
"""Build performance tests"""
-from .base import KernelDropCaches
+from .base import BuildPerfTest, KernelDropCaches