Skip to content

Commit f45af97

Browse files
committed
fix(tests/virtio-mem): bump fillmem timeout to 30s
Sometimes on m6a the uffd test fails to write 1.2GB within 10s. Bump the timeout to 30s. Signed-off-by: Riccardo Mancini <[email protected]>
1 parent 4827466 commit f45af97

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/integration_tests/performance/test_hotplug_memory.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -197,7 +197,7 @@ def check_memory_usable(uvm):
197197
# try to allocate 95% of available memory
198198
amount_mib = int(mem_available * 95 / 100)
199199

200-
_ = uvm.ssh.check_output(f"/usr/local/bin/fillmem {amount_mib}", timeout=10)
200+
_ = uvm.ssh.check_output(f"/usr/local/bin/fillmem {amount_mib}", timeout=30)
201201
# verify the allocation was successful
202202
_ = uvm.ssh.check_output("cat /tmp/fillmem_output.txt | grep successful")
203203

0 commit comments

Comments
 (0)