From ec80ae2322a78f43a27c6fd2f6daea2728087b9c Mon Sep 17 00:00:00 2001 From: Christian Stenger Date: Mon, 21 Feb 2022 16:12:02 +0100 Subject: [PATCH] Tests: Fix dumper execution on macOS macOS may print warnings on stderr when running qmake which in turn stops the test before starting to build. Change-Id: I01750e984916b3e16f5d5737e44cd5a2c6e0433b Reviewed-by: hjk --- tests/auto/debugger/tst_dumpers.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/auto/debugger/tst_dumpers.cpp b/tests/auto/debugger/tst_dumpers.cpp index 3b2342e97e3..4c6c9919d0c 100644 --- a/tests/auto/debugger/tst_dumpers.cpp +++ b/tests/auto/debugger/tst_dumpers.cpp @@ -1648,7 +1648,7 @@ void tst_Dumpers::dumper() if (data.allProfile.isEmpty()) { // Nim... if (!error.isEmpty()) { - qDebug() << error; QVERIFY(false); + qDebug() << error; QVERIFY(qmake.exitCode() == 0); } } }