diff options
| author | andrr3j | 2023-07-19 14:48:30 +0200 |
|---|---|---|
| committer | andrr3j | 2023-07-19 14:48:30 +0200 |
| commit | 533c5766441ff6a9355441874781645d23b61e90 (patch) | |
| tree | c2b8b9c51ce5a003e88f397e549c90bfcf57eb0e | |
| parent | fd8e1c3c40b216bc6beada39e86d07136e9f09a2 (diff) | |
| download | pyecsca-codegen-533c5766441ff6a9355441874781645d23b61e90.tar.gz pyecsca-codegen-533c5766441ff6a9355441874781645d23b61e90.tar.zst pyecsca-codegen-533c5766441ff6a9355441874781645d23b61e90.zip | |
simulator test fix 2
| -rw-r--r-- | test/test_simulator.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/test/test_simulator.py b/test/test_simulator.py index 1bce829..d741cf4 100644 --- a/test/test_simulator.py +++ b/test/test_simulator.py @@ -15,6 +15,7 @@ from pyecsca.ec.mod import Mod from pyecsca.ec.model import ShortWeierstrassModel from pyecsca.ec.params import DomainParameters from pyecsca.ec.point import InfinityPoint, Point +import gc class SimulatorTest(TestCase): @@ -56,6 +57,8 @@ class SimulatorTest(TestCase): mult.init(params, params.generator) callback(target, mult, params) target.disconnect() + del target + gc.collect() class PRNGTests(SimulatorTest): |
