]> code.ossystems Code Review - openembedded-core.git/commitdiff
oe-selftest: fix incorrect fstype
authorEd Bartosh <ed.bartosh@linux.intel.com>
Thu, 30 Mar 2017 15:11:55 +0000 (18:11 +0300)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Fri, 31 Mar 2017 11:12:16 +0000 (12:12 +0100)
Fixed typo in wks content: squash->squashfs

Signed-off-by: Ed Bartosh <ed.bartosh@linux.intel.com>
meta/lib/oeqa/selftest/wic.py

index 2401aaa156d10ef61652a51c054d80ec89b6c477..ff13eb8a1da266b9ce788aa7dd25cbbdb9ec9fc8 100644 (file)
@@ -729,7 +729,7 @@ part /etc --source rootfs --ondisk mmcblk0 --fstype=ext4 --exclude-path bin/ --r
                             'part emptyvfat   --fstype vfat   --size 1M\n',
                             'part emptyext2   --fstype ext2   --size 1M\n',
                             'part emptybtrfs  --fstype btrfs  --size 100M\n',
-                            'part emptysquash --fstype squash --size 1M\n'])
+                            'part emptysquash --fstype squashfs --size 1M\n'])
             wks.flush()
             cmd = "wic create %s -e %s -o %s" % (wks.name, img, self.resultdir)
             self.assertEqual(0, runCmd(cmd).status)