diff options
Diffstat (limited to 'meta/lib/oeqa/buildperf')
-rw-r--r-- | meta/lib/oeqa/buildperf/__init__.py | 1 | ||||
-rw-r--r-- | meta/lib/oeqa/buildperf/base.py | 5 |
2 files changed, 6 insertions, 0 deletions
diff --git a/meta/lib/oeqa/buildperf/__init__.py b/meta/lib/oeqa/buildperf/__init__.py index add3be2944..7e51726afb 100644 --- a/meta/lib/oeqa/buildperf/__init__.py +++ b/meta/lib/oeqa/buildperf/__init__.py | |||
@@ -12,6 +12,7 @@ | |||
12 | """Build performance tests""" | 12 | """Build performance tests""" |
13 | from .base import (perf_test_case, | 13 | from .base import (perf_test_case, |
14 | BuildPerfTestCase, | 14 | BuildPerfTestCase, |
15 | BuildPerfTestLoader, | ||
15 | BuildPerfTestRunner, | 16 | BuildPerfTestRunner, |
16 | KernelDropCaches) | 17 | KernelDropCaches) |
17 | from .test_basic import * | 18 | from .test_basic import * |
diff --git a/meta/lib/oeqa/buildperf/base.py b/meta/lib/oeqa/buildperf/base.py index 53ac9764a2..1ee546dd85 100644 --- a/meta/lib/oeqa/buildperf/base.py +++ b/meta/lib/oeqa/buildperf/base.py | |||
@@ -325,3 +325,8 @@ class BuildPerfTestCase(unittest.TestCase): | |||
325 | os.sync() | 325 | os.sync() |
326 | # Wait a bit for all the dirty blocks to be written onto disk | 326 | # Wait a bit for all the dirty blocks to be written onto disk |
327 | time.sleep(3) | 327 | time.sleep(3) |
328 | |||
329 | |||
330 | class BuildPerfTestLoader(unittest.TestLoader): | ||
331 | """Test loader for build performance tests""" | ||
332 | sortTestMethodsUsing = None | ||