Skip to content

Commit b2d3286

Browse files
committed
test(perf): add secret_free to test_memory_overhead
Increasing Secret Freedom test coverage. Signed-off-by: Nikita Kalyazin <[email protected]>
1 parent 22b6680 commit b2d3286

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

tests/integration_tests/performance/test_memory_overhead.py

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@ def test_memory_overhead(
3737
mem_size_mib,
3838
pci_enabled,
3939
metrics,
40+
secret_free,
4041
):
4142
"""Track Firecracker memory overhead.
4243
@@ -48,7 +49,11 @@ def test_memory_overhead(
4849
guest_kernel_acpi, rootfs, pci=pci_enabled, monitor_memory=False
4950
)
5051
microvm.spawn(emit_metrics=True)
51-
microvm.basic_config(vcpu_count=vcpu_count, mem_size_mib=mem_size_mib)
52+
microvm.basic_config(
53+
vcpu_count=vcpu_count,
54+
mem_size_mib=mem_size_mib,
55+
secret_free=secret_free,
56+
)
5257
microvm.add_net_iface()
5358
microvm.start()
5459
metrics.set_dimensions(

0 commit comments

Comments
 (0)