* [PATCH] btrfs-progs: tests: not_run for global_prereq fail @ 2023-07-25 9:43 Anand Jain 2023-07-27 16:51 ` David Sterba 0 siblings, 1 reply; 5+ messages in thread From: Anand Jain @ 2023-07-25 9:43 UTC (permalink / raw) To: linux-btrfs Prerequisite checks using global_prereq() aren't global, so why fail and stop further test cases? Instead, just don't run them. Signed-off-by: Anand Jain <anand.jain@oracle.com> --- tests/common | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/common b/tests/common index 602a4122f8bd..4bde06ad9d1d 100644 --- a/tests/common +++ b/tests/common @@ -395,7 +395,7 @@ check_global_prereq() { type -p "$1" &> /dev/null if [ $? -ne 0 ]; then - _fail "Failed system wide prerequisities: $1"; + _not_run "Failed system wide prerequisities: $1"; fi } -- 2.39.3 ^ permalink raw reply related [flat|nested] 5+ messages in thread
* Re: [PATCH] btrfs-progs: tests: not_run for global_prereq fail 2023-07-25 9:43 [PATCH] btrfs-progs: tests: not_run for global_prereq fail Anand Jain @ 2023-07-27 16:51 ` David Sterba 2023-07-28 3:39 ` Anand Jain 0 siblings, 1 reply; 5+ messages in thread From: David Sterba @ 2023-07-27 16:51 UTC (permalink / raw) To: Anand Jain; +Cc: linux-btrfs On Tue, Jul 25, 2023 at 05:43:54PM +0800, Anand Jain wrote: > Prerequisite checks using global_prereq() aren't global, so why > fail and stop further test cases? Instead, just don't run them. I'd rather let the whole testsuite run, a missing global prerequisity means the environment is not set up properly, so this fail as intended. If you look what kind of utilities are checked in that way it's eg. dd, mke2fs, chattr, losetup. All are supposed to be available on a common system so it's not expected to fail. If there's some less common utility and a test which could be optional then this should be a special case, which would require a new helper. ^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH] btrfs-progs: tests: not_run for global_prereq fail 2023-07-27 16:51 ` David Sterba @ 2023-07-28 3:39 ` Anand Jain 2023-07-28 3:51 ` Anand Jain 0 siblings, 1 reply; 5+ messages in thread From: Anand Jain @ 2023-07-28 3:39 UTC (permalink / raw) To: dsterba; +Cc: linux-btrfs On 28/07/2023 00:51, David Sterba wrote: > On Tue, Jul 25, 2023 at 05:43:54PM +0800, Anand Jain wrote: >> Prerequisite checks using global_prereq() aren't global, so why >> fail and stop further test cases? Instead, just don't run them. > > I'd rather let the whole testsuite run, a missing global prerequisity > means the environment is not set up properly, so this fail as intended. > If you look what kind of utilities are checked in that way it's eg. dd, > mke2fs, chattr, losetup. All are supposed to be available on a common > system so it's not expected to fail. > > If there's some less common utility and a test which could be optional > then this should be a special case, which would require a new helper. I would prefer using check_global_prereq() to verify all the mandatory prerequisites at once. If each test case checks for a different binary using check_global_prereq() and it fails during that test case, we have to restart, which becomes messy. The support for mkreiserfs on OL was removed, causing the test case to abruptly stop in the middle. ^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH] btrfs-progs: tests: not_run for global_prereq fail 2023-07-28 3:39 ` Anand Jain @ 2023-07-28 3:51 ` Anand Jain 2023-08-11 17:57 ` David Sterba 0 siblings, 1 reply; 5+ messages in thread From: Anand Jain @ 2023-07-28 3:51 UTC (permalink / raw) To: dsterba; +Cc: linux-btrfs On 28/07/2023 11:39, Anand Jain wrote: > On 28/07/2023 00:51, David Sterba wrote: >> On Tue, Jul 25, 2023 at 05:43:54PM +0800, Anand Jain wrote: >>> Prerequisite checks using global_prereq() aren't global, so why >>> fail and stop further test cases? Instead, just don't run them. >> >> I'd rather let the whole testsuite run, a missing global prerequisity >> means the environment is not set up properly, so this fail as intended. >> If you look what kind of utilities are checked in that way it's eg. dd, >> mke2fs, chattr, losetup. All are supposed to be available on a common >> system so it's not expected to fail. >> >> If there's some less common utility and a test which could be optional >> then this should be a special case, which would require a new helper. > > I would prefer using check_global_prereq() to verify all the mandatory > prerequisites at once. > > If each test case checks for a different binary using > check_global_prereq() and it fails during that test case, we have to > restart, which becomes messy. Commit 'btrfs-progs: tests: add script to check global prerequisities' addressed the messy situation mentioned above. > The support for mkreiserfs on OL was removed, causing the test case > to abruptly stop in the middle. Is there a way to skip the test cases? ^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH] btrfs-progs: tests: not_run for global_prereq fail 2023-07-28 3:51 ` Anand Jain @ 2023-08-11 17:57 ` David Sterba 0 siblings, 0 replies; 5+ messages in thread From: David Sterba @ 2023-08-11 17:57 UTC (permalink / raw) To: Anand Jain; +Cc: dsterba, linux-btrfs On Fri, Jul 28, 2023 at 11:51:18AM +0800, Anand Jain wrote: > On 28/07/2023 11:39, Anand Jain wrote: > > On 28/07/2023 00:51, David Sterba wrote: > >> On Tue, Jul 25, 2023 at 05:43:54PM +0800, Anand Jain wrote: > >>> Prerequisite checks using global_prereq() aren't global, so why > >>> fail and stop further test cases? Instead, just don't run them. > >> > >> I'd rather let the whole testsuite run, a missing global prerequisity > >> means the environment is not set up properly, so this fail as intended. > >> If you look what kind of utilities are checked in that way it's eg. dd, > >> mke2fs, chattr, losetup. All are supposed to be available on a common > >> system so it's not expected to fail. > >> > >> If there's some less common utility and a test which could be optional > >> then this should be a special case, which would require a new helper. > > > > I would prefer using check_global_prereq() to verify all the mandatory > > prerequisites at once. > > > > If each test case checks for a different binary using > > check_global_prereq() and it fails during that test case, we have to > > restart, which becomes messy. > > Commit 'btrfs-progs: tests: add script to check global prerequisities' > addressed the messy situation mentioned above. > > > The support for mkreiserfs on OL was removed, causing the test case > > to abruptly stop in the middle. > > Is there a way to skip the test cases? No, though there's the newly added TEST_FROM=test that skips all tests preceding the one. Skipping a given class of tests would make sense, though the easiest thing would be to skip by the directory name, so e.g. TEST_SKIP=*resiserfs* that would be a followup filter after TEST. Aloso we can mark the reiserfs tests as obsolete as the package are being dropped from distros (openSUSE Tumbleweed does not ship it anymore) and kernel support for reiserfs is going to be removed next year. I don't want to add some generic infrastructure just for that so I'll think about something simple like silently skipping the tests by default. ^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2023-08-11 18:04 UTC | newest] Thread overview: 5+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2023-07-25 9:43 [PATCH] btrfs-progs: tests: not_run for global_prereq fail Anand Jain 2023-07-27 16:51 ` David Sterba 2023-07-28 3:39 ` Anand Jain 2023-07-28 3:51 ` Anand Jain 2023-08-11 17:57 ` David Sterba
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox; as well as URLs for NNTP newsgroup(s).