From 1d88659ef6b96408243144d41bd99dd3ff5015e2 Mon Sep 17 00:00:00 2001 From: Markus Lehtonen Date: Wed, 11 May 2016 14:42:32 +0300 Subject: oeqa.buildperf: implement BuildPerfTestRunner class The new class is responsible for actually running the tests and processing their results. This commit also adds a decorator function for adding new tests. No automatic test discovery, at least yet. (From OE-Core rev: bf90aecb7e150d6bfac7240286c797b79d26528b) Signed-off-by: Markus Lehtonen Signed-off-by: Ross Burton Signed-off-by: Richard Purdie --- meta/lib/oeqa/buildperf/__init__.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'meta/lib/oeqa/buildperf/__init__.py') diff --git a/meta/lib/oeqa/buildperf/__init__.py b/meta/lib/oeqa/buildperf/__init__.py index 3bee5b9028..d6065e806d 100644 --- a/meta/lib/oeqa/buildperf/__init__.py +++ b/meta/lib/oeqa/buildperf/__init__.py @@ -10,4 +10,5 @@ # more details. # """Build performance tests""" -from .base import BuildPerfTest, KernelDropCaches +from .base import (build_perf_test, BuildPerfTest, BuildPerfTestRunner, + KernelDropCaches) -- cgit v1.2.3-54-g00ecf