commit bffab8b792790306db43bea412568c3e5ceb0ac0
Author: Samuel Thibault <samuel.thibault@ens-lyon.org>
Date:   Sat Apr 6 00:55:24 2024 +0200

    tests: Fix running on 32bit host
    
    qemu-system-i386 says at most 2047 MB RAM can be simulated

diff --git a/tests/user-qemu.mk b/tests/user-qemu.mk
index bb95315c..3b546252 100644
--- a/tests/user-qemu.mk
+++ b/tests/user-qemu.mk
@@ -162,7 +162,7 @@ tests/module-%: $(srcdir)/tests/test-%.c $(SRC_TESTLIB) $(MACH_TESTINSTALL)
 #
 
 GNUMACH_ARGS = console=com0
-QEMU_OPTS = -m 2048 -nographic -no-reboot -boot d
+QEMU_OPTS = -m 2047 -nographic -no-reboot -boot d
 QEMU_GDB_PORT ?= 1234
 
 if HOST_ix86
