test/smp: add missing destruct call

This commit is contained in:
Norman Feske 2020-01-07 12:26:36 +01:00 committed by Christian Helmuth
parent 9bba6613e7
commit 37ec636018
1 changed files with 2 additions and 0 deletions

View File

@ -236,6 +236,8 @@ namespace Affinity_test {
}
}
destroy(heap, output_buffer);
for (unsigned i = 0; i < cpus.total(); i++)
destroy(heap, threads[i]);
destroy(heap, threads);