Skip to content

Commit 10c036b

Browse files
committed
test(memory_overhead): update x86 GAP start
In the following commit we resized the 32b MMIO region to 1GiB, but it was not reflected in the test: commit 7c623e8 Author: Babis Chalios <[email protected]> Date: Mon May 5 17:52:08 2025 +0200 arch: define 64-bit capable MMIO memory regions Signed-off-by: Nikita Kalyazin <[email protected]>
1 parent a8f5d78 commit 10c036b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/integration_tests/performance/test_memory_overhead.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@
2020
import psutil
2121
import pytest
2222

23-
# If guest memory is >3328MB, it is split in a 2nd region
24-
X86_MEMORY_GAP_START = 3328 * 2**20
23+
# If guest memory is >3072MB, it is split in a 2nd region
24+
X86_MEMORY_GAP_START = 3072 * 2**20
2525

2626

2727
@pytest.mark.parametrize(

0 commit comments

Comments
 (0)