diff options
author | Luca Ceresoli <luca@lucaceresoli.net> | 2017-05-27 23:58:47 +0200 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2017-05-28 14:48:08 +0200 |
commit | cfecdfadc1c980e3bb6dc86101b3b932a0969017 (patch) | |
tree | d5094c4c097134d270d07117317093db6be76f41 /support | |
parent | e0a787669124d0ae1da81739f3fb7eabba272fb4 (diff) | |
download | buildroot-cfecdfadc1c980e3bb6dc86101b3b932a0969017.tar.gz buildroot-cfecdfadc1c980e3bb6dc86101b3b932a0969017.zip |
support/testing: fs/ext: add a negative test for the "extent" feature
We only have a positive test for it, in ext4. Let's have a negative
one as well.
Signed-off-by: Luca Ceresoli <luca@lucaceresoli.net>
Reviewed-by: Ricardo Martincoski <ricardo.martincoski@gmail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Diffstat (limited to 'support')
-rw-r--r-- | support/testing/tests/fs/test_ext.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/support/testing/tests/fs/test_ext.py b/support/testing/tests/fs/test_ext.py index f7e2e85055..545bf1ed79 100644 --- a/support/testing/tests/fs/test_ext.py +++ b/support/testing/tests/fs/test_ext.py @@ -86,6 +86,7 @@ BR2_TARGET_ROOTFS_EXT2_3=y out = dumpe2fs_run(self.builddir, "rootfs.ext3") self.assertEqual(dumpe2fs_getprop(out, REVISION_PROP), "1 (dynamic)") self.assertIn("has_journal", dumpe2fs_getprop(out, FEATURES_PROP)) + self.assertNotIn("extent", dumpe2fs_getprop(out, FEATURES_PROP)) exit_code = boot_img_and_check_fs_type(self.emulator, self.builddir, "ext3") |