aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorUlf Hermann <ulf.hermann@qt.io>2020-01-10 09:17:15 +0100
committerUlf Hermann <ulf.hermann@qt.io>2020-01-10 12:03:53 +0100
commit8ea1e7032637de89f23a60aca8317c0539f04529 (patch)
tree19bbf0436c880dc9f0ace287f7231b242f06d349
parent55a645a5ece45e933fb4553a76500d374e5c0a95 (diff)
tst_qmldiskcache: Increase compile timeout
Apparently some machines on the CI take north of 10s to compile a component. Change-Id: Ia01c55c0f248e061bea8a3bc194c65e4e5f663b5 Reviewed-by: Fabian Kosmale <fabian.kosmale@qt.io> Reviewed-by: Simon Hausmann <simon.hausmann@qt.io>
-rw-r--r--tests/auto/qml/qmldiskcache/tst_qmldiskcache.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/tests/auto/qml/qmldiskcache/tst_qmldiskcache.cpp b/tests/auto/qml/qmldiskcache/tst_qmldiskcache.cpp
index 1f0115b926..d0c8390a74 100644
--- a/tests/auto/qml/qmldiskcache/tst_qmldiskcache.cpp
+++ b/tests/auto/qml/qmldiskcache/tst_qmldiskcache.cpp
@@ -87,7 +87,9 @@ public:
void waitForLoad()
{
- QTRY_VERIFY(status() == QQmlComponent::Ready || status() == QQmlComponent::Error);
+ QTRY_VERIFY_WITH_TIMEOUT(
+ status() == QQmlComponent::Ready || status() == QQmlComponent::Error,
+ 32768);
}
};