From 833da1f31c27e4e3d2b910f379ea1db595ed8f11 Mon Sep 17 00:00:00 2001 From: Volker Hilsheimer Date: Sat, 20 May 2023 11:33:27 +0200 Subject: [PATCH] QPauseAnimation test: add QNX to platforms that might fail MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The noTimerUpdates test has been quite flaky since the optimization of single shot timers in 87535e4e4337596066258e361143cb9906e89512. Since we run QNX tests in QEMU, it's hard to guarantee anything that involves timers, so tagging that platform as one of those that have a bad timer resolution. Change-Id: I6567ea0dee859a207d4b9f659a02e805a2f87d63 Reviewed-by: Tor Arne Vestbø --- .../corelib/animation/qpauseanimation/tst_qpauseanimation.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/auto/corelib/animation/qpauseanimation/tst_qpauseanimation.cpp b/tests/auto/corelib/animation/qpauseanimation/tst_qpauseanimation.cpp index ba579046205..53c80ef71f4 100644 --- a/tests/auto/corelib/animation/qpauseanimation/tst_qpauseanimation.cpp +++ b/tests/auto/corelib/animation/qpauseanimation/tst_qpauseanimation.cpp @@ -11,7 +11,7 @@ #include -#if defined(Q_OS_WIN) || defined(Q_OS_ANDROID) +#if defined(Q_OS_WIN) || defined(Q_OS_ANDROID) || defined(Q_OS_QNX) # define BAD_TIMER_RESOLUTION #endif