Disable nosv dtlock test

It consumes a lot of resources and can deadlock
when running multiple nosv instances in parallel.
This commit is contained in:
Aleix Boné 2025-10-23 11:49:45 +02:00
parent f42bbec43f
commit 8b2d1640d7
No known key found for this signature in database
2 changed files with 14 additions and 0 deletions

View File

@ -0,0 +1,12 @@
diff --git a/tests/Makefile.am b/tests/Makefile.am
index 2b986743..ae424087 100644
--- a/tests/Makefile.am
+++ b/tests/Makefile.am
@@ -55,7 +55,6 @@ regression_tests = regression-attach-is.test \
regression-parallel-tasks-submission.test
unit_tests = unit-backbone-pressure.test \
- unit-dtlock.test \
unit-ring-buffer.test \
unit-heap.test

View File

@ -17,6 +17,8 @@ let
src = nosv;
version = getVersion nosv;
patches = (old.patches or []) ++ [ ./nosv-disable-dtlock-test.patch ];
doCheck = true;
inherit requiredSystemFeatures;
});