From 3f42cd724e81a147163c42731960aa7b2fefc31a Mon Sep 17 00:00:00 2001 From: Christian Stenger Date: Wed, 14 Nov 2018 09:54:54 +0100 Subject: [PATCH] Tests: Allow dumper tests with Qt5.11 and Xcode 10 qmake brings up a warning regarding using Qt5.11 in combination with Xcode 10. This seems to get handled as error inside the tests - so, disable the warning. Change-Id: I6d2918789580fd332048c85e0c4fc75a9635deb6 Reviewed-by: hjk --- tests/auto/debugger/tst_dumpers.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/auto/debugger/tst_dumpers.cpp b/tests/auto/debugger/tst_dumpers.cpp index b3754c90e54..9d439f05c2d 100644 --- a/tests/auto/debugger/tst_dumpers.cpp +++ b/tests/auto/debugger/tst_dumpers.cpp @@ -1301,6 +1301,7 @@ void tst_Dumpers::dumper() proFile.write(data.mainFile.toUtf8()); proFile.write("\nTARGET = doit\n"); proFile.write("\nCONFIG -= app_bundle\n"); + proFile.write("\nmacos: CONFIG += sdk_no_version_check\n"); proFile.write("\nCONFIG -= release\n"); proFile.write("\nCONFIG += debug\n"); proFile.write("\nCONFIG += console\n");