From d8cd56df6b3bde89a59cd25db359a0bbea9449d2 Mon Sep 17 00:00:00 2001 From: Ville Voutilainen Date: Thu, 21 Dec 2023 11:33:21 +0200 Subject: [PATCH] Skip tst_QSharedMemory::useTooMuchMemory The test manages to completely lock up our Linux ARM64 machines. Task-number: QTBUG-119321 Change-Id: I7c36095d14e47ac0660f18ea07af7a04ec7688fb Reviewed-by: Volker Hilsheimer Reviewed-by: Tero Heikkinen --- tests/auto/corelib/ipc/qsharedmemory/tst_qsharedmemory.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/tests/auto/corelib/ipc/qsharedmemory/tst_qsharedmemory.cpp b/tests/auto/corelib/ipc/qsharedmemory/tst_qsharedmemory.cpp index faa56482b34..5f992c3f830 100644 --- a/tests/auto/corelib/ipc/qsharedmemory/tst_qsharedmemory.cpp +++ b/tests/auto/corelib/ipc/qsharedmemory/tst_qsharedmemory.cpp @@ -583,6 +583,10 @@ void tst_QSharedMemory::attachBeforeCreate() */ void tst_QSharedMemory::useTooMuchMemory() { + if (QSysInfo::productType() == QLatin1String("Debian") + || QSysInfo::productType() == QLatin1String("debian")) + QSKIP("This test is unstable: QTBUG-119321"); + #ifdef Q_OS_LINUX bool success = true; int count = 0;