Re: [PATCH v2 9/9] Avocado tests: allow for parallel execution of tests

2024-08-15 Thread Richard Henderson
On 8/16/24 02:02, Thomas Huth wrote: that patch that I linked did not set the default number of parallel tests to $(nproc), it just used the value of the "-j" option of make. So if you just run "make check-avocado" there, you only get single threaded execution as before. You explicitely have to

Re: [PATCH v2 9/9] Avocado tests: allow for parallel execution of tests

2024-08-15 Thread Thomas Huth
On 15/08/2024 16.08, Cleber Rosa wrote: On Mon, Aug 12, 2024 at 6:17 AM Thomas Huth wrote: ... diff --git a/tests/Makefile.include b/tests/Makefile.include index 537804d101..545b5155f9 100644 --- a/tests/Makefile.include +++ b/tests/Makefile.include @@ -94,6 +94,9 @@ TESTS_RESULTS_DIR=$(BUILD_

Re: [PATCH v2 9/9] Avocado tests: allow for parallel execution of tests

2024-08-15 Thread Cleber Rosa
On Mon, Aug 12, 2024 at 6:17 AM Thomas Huth wrote: > ... > > diff --git a/tests/Makefile.include b/tests/Makefile.include > > index 537804d101..545b5155f9 100644 > > --- a/tests/Makefile.include > > +++ b/tests/Makefile.include > > @@ -94,6 +94,9 @@ TESTS_RESULTS_DIR=$(BUILD_DIR)/tests/results > >

Re: [PATCH v2 9/9] Avocado tests: allow for parallel execution of tests

2024-08-12 Thread Thomas Huth
On 06/08/2024 19.31, Cleber Rosa wrote: The updated Avocado version allows for the execution of tests in parallel. While on a CI environment it may not be a good idea to increase the parallelization level in a single runner, developers may leverage that on specific CI runners or on their develop

[PATCH v2 9/9] Avocado tests: allow for parallel execution of tests

2024-08-06 Thread Cleber Rosa
The updated Avocado version allows for the execution of tests in parallel. While on a CI environment it may not be a good idea to increase the parallelization level in a single runner, developers may leverage that on specific CI runners or on their development environments. This also multiplies t