diff options
-rw-r--r-- | README.adoc | 2 | ||||
-rw-r--r-- | lib/oeqa/selftest/updater.py (renamed from lib/oeqa/selftest/garage_push.py) | 5 |
2 files changed, 3 insertions, 4 deletions
diff --git a/README.adoc b/README.adoc index 0097670..b4608d5 100644 --- a/README.adoc +++ b/README.adoc | |||
@@ -136,5 +136,5 @@ SANITY_TESTED_DISTROS="" | |||
136 | * Run oe-selftest: | 136 | * Run oe-selftest: |
137 | 137 | ||
138 | ``` | 138 | ``` |
139 | oe-selftest --run-tests garage_push | 139 | oe-selftest --run-tests updater |
140 | ``` | 140 | ``` |
diff --git a/lib/oeqa/selftest/garage_push.py b/lib/oeqa/selftest/updater.py index 21bd1c1..e9048fd 100644 --- a/lib/oeqa/selftest/garage_push.py +++ b/lib/oeqa/selftest/updater.py | |||
@@ -5,13 +5,12 @@ import logging | |||
5 | from oeqa.selftest.base import oeSelfTest | 5 | from oeqa.selftest.base import oeSelfTest |
6 | from oeqa.utils.commands import runCmd, bitbake, get_bb_var | 6 | from oeqa.utils.commands import runCmd, bitbake, get_bb_var |
7 | 7 | ||
8 | class GaragePushTests(oeSelfTest): | 8 | class UpdaterTests(oeSelfTest): |
9 | 9 | ||
10 | @classmethod | 10 | @classmethod |
11 | def setUpClass(cls): | 11 | def setUpClass(cls): |
12 | # Ensure we have the right data in pkgdata | ||
13 | logger = logging.getLogger("selftest") | 12 | logger = logging.getLogger("selftest") |
14 | logger.info('Running bitbake to build aktualizr-native tools') | 13 | logger.info('Running bitbake to build aktualizr-native tools and garage-sign-native') |
15 | bitbake('aktualizr-native garage-sign-native') | 14 | bitbake('aktualizr-native garage-sign-native') |
16 | 15 | ||
17 | def test_help(self): | 16 | def test_help(self): |