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 <hjk@qt.io>
This commit is contained in:
Christian Stenger
2018-11-14 09:54:54 +01:00
parent 2f41f35952
commit 3f42cd724e

View File

@@ -1301,6 +1301,7 @@ void tst_Dumpers::dumper()
proFile.write(data.mainFile.toUtf8()); proFile.write(data.mainFile.toUtf8());
proFile.write("\nTARGET = doit\n"); proFile.write("\nTARGET = doit\n");
proFile.write("\nCONFIG -= app_bundle\n"); proFile.write("\nCONFIG -= app_bundle\n");
proFile.write("\nmacos: CONFIG += sdk_no_version_check\n");
proFile.write("\nCONFIG -= release\n"); proFile.write("\nCONFIG -= release\n");
proFile.write("\nCONFIG += debug\n"); proFile.write("\nCONFIG += debug\n");
proFile.write("\nCONFIG += console\n"); proFile.write("\nCONFIG += console\n");