From: Ed Bartosh Date: Thu, 30 Mar 2017 15:11:55 +0000 (+0300) Subject: oe-selftest: fix incorrect fstype X-Git-Tag: lucaceresoli/bug-15201-perf-libtraceevent-missing~21811 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=cf06e6763d06e3e631bed85e2cb087f713808e6d;p=thirdparty%2Fopenembedded%2Fopenembedded-core-contrib.git oe-selftest: fix incorrect fstype Fixed typo in wks content: squash->squashfs Signed-off-by: Ed Bartosh --- diff --git a/meta/lib/oeqa/selftest/wic.py b/meta/lib/oeqa/selftest/wic.py index 2401aaa156d..ff13eb8a1da 100644 --- a/meta/lib/oeqa/selftest/wic.py +++ b/meta/lib/oeqa/selftest/wic.py @@ -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)