Re: [PATCH] service: split tests to perf and autotest to avoid spurious CI failures

2023-03-07 Thread David Marchand
On Fri, Mar 3, 2023 at 11:59 AM Van Haaren, Harry wrote: > > > + .setup = testsuite_setup, > > > + .teardown = testsuite_teardown, > > > + .unit_test_cases = { > > > + TEST_CASE_ST(dummy_register, NULL, service_attr_get), > > > + TEST_CASE_ST(dummy_reg

RE: [PATCH] service: split tests to perf and autotest to avoid spurious CI failures

2023-03-03 Thread Van Haaren, Harry
inux.microsoft.com; acon...@redhat.com; Richardson, Bruce > > Subject: Re: [PATCH] service: split tests to perf and autotest to avoid > spurious CI > failures > > Hello, > > On Fri, Feb 24, 2023 at 7:04 PM Harry van Haaren > wrote: > > > > On some CI runs, so

Re: [PATCH] service: split tests to perf and autotest to avoid spurious CI failures

2023-03-03 Thread David Marchand
On Mon, Feb 27, 2023 at 5:08 PM David Marchand wrote: > > Hello, > > On Fri, Feb 24, 2023 at 7:04 PM Harry van Haaren > wrote: > > > > On some CI runs, some service-cores tests spuriously fail as the > > service lcore thread is not actually scheduled by the OS in the > > given amount of time. > >

Re: [PATCH] service: split tests to perf and autotest to avoid spurious CI failures

2023-02-27 Thread David Marchand
Hello, On Fri, Feb 24, 2023 at 7:04 PM Harry van Haaren wrote: > > On some CI runs, some service-cores tests spuriously fail as the > service lcore thread is not actually scheduled by the OS in the > given amount of time. > > Increasing timeouts has not resolved the issue in the CI, so the > solu

[PATCH] service: split tests to perf and autotest to avoid spurious CI failures

2023-02-24 Thread Harry van Haaren
On some CI runs, some service-cores tests spuriously fail as the service lcore thread is not actually scheduled by the OS in the given amount of time. Increasing timeouts has not resolved the issue in the CI, so the solution in this patch is to move them to a separate perf test suite. Signed-off-