diff options
author | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2024-04-06 00:55:24 +0200 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2024-04-06 00:56:30 +0200 |
commit | bffab8b792790306db43bea412568c3e5ceb0ac0 (patch) | |
tree | 76acfab4db0a5df0e251165a4b79f65922ffad26 /tests | |
parent | fee1b740ec25c2a98d4da278c522b4ee097bdda4 (diff) | |
download | gnumach-bffab8b792790306db43bea412568c3e5ceb0ac0.tar.gz gnumach-bffab8b792790306db43bea412568c3e5ceb0ac0.tar.bz2 gnumach-bffab8b792790306db43bea412568c3e5ceb0ac0.zip |
tests: Fix running on 32bit host
qemu-system-i386 says at most 2047 MB RAM can be simulated
Diffstat (limited to 'tests')
-rw-r--r-- | tests/user-qemu.mk | 2 |
1 files changed, 1 insertions, 1 deletions
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 |