diff --git a/tests/auto/utils/async/tst_async.cpp b/tests/auto/utils/async/tst_async.cpp index 0c3174d794d..e25a443cce1 100644 --- a/tests/auto/utils/async/tst_async.cpp +++ b/tests/auto/utils/async/tst_async.cpp @@ -392,6 +392,8 @@ public: void tst_Async::onResultReady() { +// TODO: Re-enable when QTBUG-119169 is fixed. +#if 0 { // lambda QObject context; QFuture f = Utils::asyncRun([](QPromise &fi) { @@ -425,6 +427,7 @@ void tst_Async::onResultReady() QCOMPARE(count, 2); QCOMPARE(obj.value, QString("there")); } +#endif { // member QFuture f = Utils::asyncRun([] { return QString("Hi"); }); ObjWithProperty obj;