summaryrefslogtreecommitdiffstats
path: root/meta/lib/oeqa/selftest/cases/imagefeatures.py
diff options
context:
space:
mode:
Diffstat (limited to 'meta/lib/oeqa/selftest/cases/imagefeatures.py')
-rw-r--r--meta/lib/oeqa/selftest/cases/imagefeatures.py10
1 files changed, 10 insertions, 0 deletions
diff --git a/meta/lib/oeqa/selftest/cases/imagefeatures.py b/meta/lib/oeqa/selftest/cases/imagefeatures.py
index 1a850008ef..2ca66d0cf3 100644
--- a/meta/lib/oeqa/selftest/cases/imagefeatures.py
+++ b/meta/lib/oeqa/selftest/cases/imagefeatures.py
@@ -226,3 +226,13 @@ class ImageFeatures(OESelftestTestCase):
226 # check if result image is in deploy directory 226 # check if result image is in deploy directory
227 self.assertTrue(os.path.exists(image_path), 227 self.assertTrue(os.path.exists(image_path),
228 "%s image %s doesn't exist" % (itype, image_path)) 228 "%s image %s doesn't exist" % (itype, image_path))
229
230 def test_useradd_static(self):
231 config = """
232USERADDEXTENSION = "useradd-staticids"
233USERADD_ERROR_DYNAMIC = "skip"
234USERADD_UID_TABLES += "files/static-passwd"
235USERADD_GID_TABLES += "files/static-group"
236"""
237 self.write_config(config)
238 bitbake("core-image-base")