summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThiago Macieira <thiago.macieira@intel.com>2024-01-26 11:10:10 -0800
committerThiago Macieira <thiago.macieira@intel.com>2024-01-30 13:28:19 -0800
commit133c91865067a390d05376fc4073556d3fd3a083 (patch)
tree7de3379a8d4848fbdb64b6adbf3668b3f4d23707
parent702c420f51d9d56ca056315387f224ec2dba3ff3 (diff)
tst_QHostInfo: reorganize the #includes
Pick-to: 6.7 Change-Id: I5dd50a1a7ca5424d9e7afffd17adfb5d0bb9a54c Reviewed-by: MÃ¥rten Nordheim <marten.nordheim@qt.io>
-rw-r--r--tests/auto/network/kernel/qhostinfo/tst_qhostinfo.cpp28
1 files changed, 12 insertions, 16 deletions
diff --git a/tests/auto/network/kernel/qhostinfo/tst_qhostinfo.cpp b/tests/auto/network/kernel/qhostinfo/tst_qhostinfo.cpp
index b81ead7e80..280788d2ee 100644
--- a/tests/auto/network/kernel/qhostinfo/tst_qhostinfo.cpp
+++ b/tests/auto/network/kernel/qhostinfo/tst_qhostinfo.cpp
@@ -12,31 +12,27 @@
# include <ws2tcpip.h>
#endif
-#include <QTest>
-#include <QTestEventLoop>
-#include <QProcess>
+#include <qhostinfo.h>
+#include "private/qhostinfo_p.h"
+
#include <QCoreApplication>
#include <QDebug>
-#include <QTcpSocket>
+#include <QProcess>
#include <QTcpServer>
+#include <QTcpSocket>
+#include <QTest>
+#include <QTestEventLoop>
#include <private/qthread_p.h>
-#include <time.h>
+#include <sys/types.h>
+
#if defined(Q_OS_WIN)
-#include <qt_windows.h>
+# include <qt_windows.h>
#else
-#include <unistd.h>
-#include <signal.h>
-#endif
-
-#include <qhostinfo.h>
-#include "private/qhostinfo_p.h"
-
-#include <sys/types.h>
-#if defined(Q_OS_UNIX)
-# include <sys/socket.h>
# include <netdb.h>
+# include <sys/socket.h>
+# include <unistd.h>
#endif
#include "../../../network-settings.h"