Обсуждение: pgsql: Add basic spinlock tests to regression tests.

Поиск
Список
Период
Сортировка

pgsql: Add basic spinlock tests to regression tests.

От
Andres Freund
Дата:
Add basic spinlock tests to regression tests.

As s_lock_test, the already existing test for spinlocks, isn't run in
an automated fashion (and doesn't test a normal backend environment),
adding tests that are run as part of a normal regression run is a good
idea. Particularly in light of several recent and upcoming spinlock
related fixes.

Currently the new tests are run as part of the pre-existing
test_atomic_ops() test. That perhaps can be quibbled about, but for
now seems ok.

The only operations that s_lock_test tests but the new tests don't are
the detection of a stuck spinlock and S_LOCK_FREE (which is otherwise
unused, not implemented on all platforms, and will be removed).

This currently contains a test for more than INT_MAX spinlocks (only
run with --disable-spinlocks), to ensure the recent commit fixing a
bug with more than INT_MAX spinlock initializations is correct. That
test is somewhat slow, so we might want to disable it after a few
days.

It might be worth retiring s_lock_test after this. The added coverage
of a stuck spinlock probably isn't worth the added complexity?

Author: Andres Freund
Discussion: https://postgr.es/m/20200606023103.avzrctgv7476xj7i@alap3.anarazel.de

Branch
------
REL9_5_STABLE

Details
-------
https://git.postgresql.org/pg/commitdiff/7e91f90a8ed4af18f4d2a3cb1b657b4296e2e710

Modified Files
--------------
src/test/regress/regress.c | 109 +++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 109 insertions(+)


Re: pgsql: Add basic spinlock tests to regression tests.

От
Tom Lane
Дата:
Andres Freund <andres@anarazel.de> writes:
> Add basic spinlock tests to regression tests.

Looks like you did not make this C89-clean in the back branches.

            regards, tom lane



Re: pgsql: Add basic spinlock tests to regression tests.

От
Andres Freund
Дата:
Hi,

On 2020-06-18 17:44:47 -0400, Tom Lane wrote:
> Andres Freund <andres@anarazel.de> writes:
> > Add basic spinlock tests to regression tests.
> 
> Looks like you did not make this C89-clean in the back branches.

Working on it, sorry for that.

Greetings,

Andres Freund