diff options
author | Patrick Vacek <patrickvacek@gmail.com> | 2018-11-29 11:18:38 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-11-29 11:18:38 +0100 |
commit | 0b2db436420531d9f4a57e8ec27943bba6ac2b1f (patch) | |
tree | 922e6f2f8316ad719c23814f3e090809c755d019 /lib/oeqa | |
parent | 0dd9c75b3f187acca3b4032ac2f1ae002b806275 (diff) | |
parent | 2b5d6110db3960a5f37b8ab0836226d7753c74e0 (diff) | |
download | meta-updater-0b2db436420531d9f4a57e8ec27943bba6ac2b1f.tar.gz |
Merge pull request #440 from agners/mandate-usr-move
Use usrmerge
Diffstat (limited to 'lib/oeqa')
-rw-r--r-- | lib/oeqa/selftest/cases/updater.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/oeqa/selftest/cases/updater.py b/lib/oeqa/selftest/cases/updater.py index 7e55d07..92bf6fc 100644 --- a/lib/oeqa/selftest/cases/updater.py +++ b/lib/oeqa/selftest/cases/updater.py | |||
@@ -36,6 +36,10 @@ class GeneralTests(OESelftestTestCase): | |||
36 | result = get_bb_var('DISTRO_FEATURES').find('sota') | 36 | result = get_bb_var('DISTRO_FEATURES').find('sota') |
37 | self.assertNotEqual(result, -1, 'Feature "sota" not set at DISTRO_FEATURES') | 37 | self.assertNotEqual(result, -1, 'Feature "sota" not set at DISTRO_FEATURES') |
38 | 38 | ||
39 | def test_feature_usrmerge(self): | ||
40 | result = get_bb_var('DISTRO_FEATURES').find('usrmerge') | ||
41 | self.assertNotEqual(result, -1, 'Feature "sota" not set at DISTRO_FEATURES') | ||
42 | |||
39 | def test_feature_systemd(self): | 43 | def test_feature_systemd(self): |
40 | result = get_bb_var('DISTRO_FEATURES').find('systemd') | 44 | result = get_bb_var('DISTRO_FEATURES').find('systemd') |
41 | self.assertNotEqual(result, -1, 'Feature "systemd" not set at DISTRO_FEATURES') | 45 | self.assertNotEqual(result, -1, 'Feature "systemd" not set at DISTRO_FEATURES') |