Skip to content

Commit 2c3bb5f

Browse files
committed
test(perf): disable memory monitor for memory overhead perf test
This test just boots a VM, which a ton of other tests also do, so if memory overhead really does change, we'll catch it in other tests. On the other hand, having this test just crash if memory overhead goes above 5MB is not very useful, because it prevent this test from being run as a A/B-test in scenarios where memory overhead is indeed increasing. Signed-off-by: Patrick Roy <[email protected]>
1 parent cdb2d4c commit 2c3bb5f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/integration_tests/performance/test_memory_overhead.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ def test_memory_overhead(
3838
"""
3939

4040
for _ in range(5):
41-
microvm = microvm_factory.build(guest_kernel_acpi, rootfs)
41+
microvm = microvm_factory.build(guest_kernel_acpi, rootfs, monitor_memory=False)
4242
microvm.spawn(emit_metrics=True)
4343
microvm.basic_config(vcpu_count=vcpu_count, mem_size_mib=mem_size_mib)
4444
microvm.add_net_iface()

0 commit comments

Comments
 (0)