[LTP] [PATCH v3] squashfs: Add regression test for sanity check bug

Cyril Hrubis chrubis@suse.cz
Thu Jul 15 12:09:54 CEST 2021


Hi!
> > For instance mount_device flag needs implies format_device which implies
> > needs_device which implies needs_tmpdir.
> I agree with that. If needs_tmpdir was only required, because 
> needs_device is required, I wouldn't add it.
> But if needs_device implementation is changed, the test still needs a 
> tmpdir. That's why I would always vote for adding it here.

The .needs_device flag implies .needs_tmpdir that's a part of the test
library API.

> > Also the dev_min_size = 1 does not have any efect here, since it can be
> > used only to request bigger-than-default size and gets ignored here. I
> > guess that we can merge this as it is and I will add needs_loopdev to
> > the tst_test structure later which will just allocate loop device and
> > pass it down to the test.
> This is true, but the test should also specify what it needs. If for 
> whatever reason DEV_SIZE_MB is redefined to a smaller value, the test 
> would still work.

The DEV_SIZE_MB will never go backward, this is actually the minimal
size that is needed in order to create all supported Linux filesystems
and we need to bump the size up every few years. I think that it was
100MB when I started to work on LTP and it got up to 256MB, which is
also the reason the tests cannot know and why this is hidden in the
library.

> To be honest, for "1" it doesn't matter. But it it was bigger, it makes 
> total sense to specify the size if the test knows it...

Also LTP allows to be passed a real block device to the tests, in a case
that you want to test a block driver, in which case the test has no
exact controll on the device size, which is also the reason why we
allow minimal size to be specified but not exact size.

> I don't understand why a lot of developers like implicit definitions so 
> much more over explicit definitions.
> I could understand it for language intrinsic stuff, because that is (or 
> could be) known to all developers.
> But for someone, who rarely works on a project or switches between 
> different projects implicit information is bad!

I think that we can actually make things better by adding all of the
text I've written above as a top level description in the tst_device.c.

-- 
Cyril Hrubis
chrubis@suse.cz


More information about the ltp mailing list