From e9ce68474397992087f7372e7bf5f7ca30456205 Mon Sep 17 00:00:00 2001 From: Karim Pinter Date: Thu, 13 Aug 2026 14:51:40 +0300 Subject: [PATCH] [VxWorks] increase the memory for qemu for x86 tst_qbytearray_large autotest fails in CI on x86, because qemu is started with 4Gb of memory and this test needs 4,7 Gb. Fixes: QTBUG-149168 Pick-to: 6.12 Change-Id: I0b6d753085c3e1f830cd705e6513003437909c64 Reviewed-by: Toni Saario --- coin/provisioning/common/linux/vxworks_qemu_launcher.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/coin/provisioning/common/linux/vxworks_qemu_launcher.sh b/coin/provisioning/common/linux/vxworks_qemu_launcher.sh index d1552791..b411087c 100755 --- a/coin/provisioning/common/linux/vxworks_qemu_launcher.sh +++ b/coin/provisioning/common/linux/vxworks_qemu_launcher.sh @@ -85,7 +85,7 @@ elif [ "$TYPE" = "intel" ]; then $VXWORKS_QEMU/bin/qemu-system-x86_64 \ -M q35 \ -smp 4 \ - -m 4G \ + -m 8G \ -cpu "Skylake-Client" \ -enable-kvm \ -monitor none \