1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
|
From: Stephen Sinclair <radarsat1@gmail.com>
Date: Fri, 14 Nov 2025 21:30:13 +0000
Subject: Reset DS count at beginning of KernelTest::t8()
---
io/src/test/KernelTest.cpp | 1 +
1 file changed, 1 insertion(+)
diff --git a/io/src/test/KernelTest.cpp b/io/src/test/KernelTest.cpp
index feb4313..f259d44 100644
--- a/io/src/test/KernelTest.cpp
+++ b/io/src/test/KernelTest.cpp
@@ -431,6 +431,7 @@ void KernelTest::t7()
void KernelTest::t8()
{
+ DynamicalSystem::resetCount();
SP::DynamicalSystem ds1, ds2;
SP::SiconosVector q(new SiconosVector(3));
|