* [LTP] SCTP testing @ 2022-02-03 17:48 Petr Vorel 2022-02-04 6:37 ` Joerg Vehlow 2022-02-04 13:29 ` [LTP] [Automated-testing] " Veronika Kabatova 0 siblings, 2 replies; 4+ messages in thread From: Petr Vorel @ 2022-02-03 17:48 UTC (permalink / raw) To: automated-testing Cc: Marcelo Ricardo Leitner, Xin Long, Thomas Petazzoni, Neil Horman, Vlad Yasevich, Baruch Siach, Philip Li, linux-sctp, Joerg Vehlow, ltp, Erico Nunes Hi all, we've been just discussing, which repository should be hosting SCTP tests [1]. Do you use these SCTP tests? If yes, do you use it from LTP [2] or the official SCTP kernel developers repository [3] ? If you use integrated to some testing framework, would it be a problem if repository changes? Also, do you use LTP network tests at all? Kind regards, Petr [1] https://lore.kernel.org/linux-sctp/YfpnVfrto4Elshy5@pevik/ [2] https://github.com/linux-test-project/ltp/tree/master/utils/sctp [3] https://github.com/sctp/lksctp-tools -- Mailing list info: https://lists.linux.it/listinfo/ltp ^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [LTP] SCTP testing 2022-02-03 17:48 [LTP] SCTP testing Petr Vorel @ 2022-02-04 6:37 ` Joerg Vehlow 2022-02-04 13:29 ` [LTP] [Automated-testing] " Veronika Kabatova 1 sibling, 0 replies; 4+ messages in thread From: Joerg Vehlow @ 2022-02-04 6:37 UTC (permalink / raw) To: Petr Vorel; +Cc: ltp, Joerg Vehlow Hi Petr, Am 2/3/2022 um 6:48 PM schrieb Petr Vorel: > Hi all, > > we've been just discussing, which repository should be hosting SCTP tests [1]. > > Do you use these SCTP tests? If yes, do you use it from LTP [2] or the official > SCTP kernel developers repository [3] ? If you use integrated to some testing > framework, would it be a problem if repository changes? We would run these tests, if our kernels would have SCTP enabled. I don't think this will happen any time soon and I don't really see a problem pulling sctp tests from another repo. > > Also, do you use LTP network tests at all? Yes we are trying to run as many ltp tests as possible. Joerg -- Mailing list info: https://lists.linux.it/listinfo/ltp ^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [LTP] [Automated-testing] SCTP testing 2022-02-03 17:48 [LTP] SCTP testing Petr Vorel 2022-02-04 6:37 ` Joerg Vehlow @ 2022-02-04 13:29 ` Veronika Kabatova 2022-02-08 18:50 ` Petr Vorel 1 sibling, 1 reply; 4+ messages in thread From: Veronika Kabatova @ 2022-02-04 13:29 UTC (permalink / raw) To: Petr Vorel; +Cc: linux-sctp, ltp, automated-testing On Thu, Feb 3, 2022 at 6:51 PM Petr Vorel <pvorel@suse.cz> wrote: > > Hi all, > > we've been just discussing, which repository should be hosting SCTP tests [1]. > > Do you use these SCTP tests? If yes, do you use it from LTP [2] or the official > SCTP kernel developers repository [3] ? If you use integrated to some testing > framework, would it be a problem if repository changes? > > Also, do you use LTP network tests at all? > Hi, we're currently not running these, but if I may offer a suggestion from my experience: It's easier for people to pick up testing when it's already a part of a test suite, rather than a separate test that they have to figure out a) even exists b) how to run it There are large test suites like LTP, kselftests and xfstests that most people are aware of, but then you get a lot of smaller tests or random scripts that, unless you're already familiar with the subsystem or get them linked directly, people won't find easily. And if a CI system wants to start running those tests, they most likely need to create a wrapper to handle test specifics, while the enablement via a larger test suite is way easier (as they can already handle it and all that's needed is to enable that specific test subset). Consolidating smaller tests into LTP or kselftests, where applicable, would make the testing process more streamlined and easier to follow for new folks too, as the expected testing could be unified across subsystems and there would be no surprises. Veronika > Kind regards, > Petr > > [1] https://lore.kernel.org/linux-sctp/YfpnVfrto4Elshy5@pevik/ > [2] https://github.com/linux-test-project/ltp/tree/master/utils/sctp > [3] https://github.com/sctp/lksctp-tools > -- Mailing list info: https://lists.linux.it/listinfo/ltp ^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [LTP] [Automated-testing] SCTP testing 2022-02-04 13:29 ` [LTP] [Automated-testing] " Veronika Kabatova @ 2022-02-08 18:50 ` Petr Vorel 0 siblings, 0 replies; 4+ messages in thread From: Petr Vorel @ 2022-02-08 18:50 UTC (permalink / raw) To: Veronika Kabatova Cc: Marcelo Ricardo Leitner, Xin Long, Joerg Vehlow, Neil Horman, Vlad Yasevich, Baruch Siach, Philip Li, linux-sctp, Thomas Petazzoni, Erico Nunes, ltp, automated-testing Hi Veronika, all, > On Thu, Feb 3, 2022 at 6:51 PM Petr Vorel <pvorel@suse.cz> wrote: > > Hi all, > > we've been just discussing, which repository should be hosting SCTP tests [1]. > > Do you use these SCTP tests? If yes, do you use it from LTP [2] or the official > > SCTP kernel developers repository [3] ? If you use integrated to some testing > > framework, would it be a problem if repository changes? > > Also, do you use LTP network tests at all? > Hi, > we're currently not running these, but if I may offer a suggestion from my > experience: It's easier for people to pick up testing when it's already a > part of a test suite, rather than a separate test that they have to figure > out a) even exists b) how to run it > There are large test suites like LTP, kselftests and xfstests that most > people are aware of, but then you get a lot of smaller tests or random > scripts that, unless you're already familiar with the subsystem or get > them linked directly, people won't find easily. And if a CI system wants > to start running those tests, they most likely need to create a wrapper > to handle test specifics, while the enablement via a larger test suite > is way easier (as they can already handle it and all that's needed is > to enable that specific test subset). > Consolidating smaller tests into LTP or kselftests, where applicable, > would make the testing process more streamlined and easier to follow > for new folks too, as the expected testing could be unified across > subsystems and there would be no surprises. Thanks a lot for your input. Agree, thus from this point it'd make more sense to keep it in LTP. Given only 2 people responded and none of you actually run these tests. That suggests little interest in SCTP testing. @SCTP kernel maintainers: We LTP maintainers don't care which repo will be chosen it's up to you to decide. Kind regards, Petr > Veronika > > Kind regards, > > Petr > > [1] https://lore.kernel.org/linux-sctp/YfpnVfrto4Elshy5@pevik/ > > [2] https://github.com/linux-test-project/ltp/tree/master/utils/sctp > > [3] https://github.com/sctp/lksctp-tools -- Mailing list info: https://lists.linux.it/listinfo/ltp ^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2022-02-08 18:50 UTC | newest] Thread overview: 4+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2022-02-03 17:48 [LTP] SCTP testing Petr Vorel 2022-02-04 6:37 ` Joerg Vehlow 2022-02-04 13:29 ` [LTP] [Automated-testing] " Veronika Kabatova 2022-02-08 18:50 ` Petr Vorel
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox