From 45cb8be4f9ab2b5b823dda104376b159c9123163 Mon Sep 17 00:00:00 2001 From: Stephen Kelly Date: Wed, 18 Jul 2012 22:25:56 +0200 Subject: Add tests of the various testlib definition possibilities. The behavior of QTEST_MAIN depends on whether QT_GUI_LIB or QT_WIDGETS_LIB is defined. It could create a QGuiApplication or QApplication which could cause linking issues if the corresponding library is not linked to. The failure cases are also tested. Change-Id: I61ed0bc760564ef42ce1dbd86c83c06348c860ff Reviewed-by: Rohan McGovern --- .../cmake/test_testlib_definitions/CMakeLists.txt | 38 ++++++++++++++ .../core_only/CMakeLists.txt | 4 ++ .../test_testlib_definitions/gui/CMakeLists.txt | 4 ++ tests/auto/cmake/test_testlib_definitions/main.cpp | 58 ++++++++++++++++++++++ .../widgets/CMakeLists.txt | 4 ++ 5 files changed, 108 insertions(+) create mode 100644 tests/auto/cmake/test_testlib_definitions/CMakeLists.txt create mode 100644 tests/auto/cmake/test_testlib_definitions/core_only/CMakeLists.txt create mode 100644 tests/auto/cmake/test_testlib_definitions/gui/CMakeLists.txt create mode 100644 tests/auto/cmake/test_testlib_definitions/main.cpp create mode 100644 tests/auto/cmake/test_testlib_definitions/widgets/CMakeLists.txt (limited to 'tests/auto/cmake/test_testlib_definitions') diff --git a/tests/auto/cmake/test_testlib_definitions/CMakeLists.txt b/tests/auto/cmake/test_testlib_definitions/CMakeLists.txt new file mode 100644 index 0000000000..c370e8effa --- /dev/null +++ b/tests/auto/cmake/test_testlib_definitions/CMakeLists.txt @@ -0,0 +1,38 @@ + +cmake_minimum_required(VERSION 2.8.3) + +project(test_testlib_definitions) + +set(CMAKE_INCLUDE_CURRENT_DIR ON) + +macro(test_testlib_project _module) + find_package(Qt5${_module} REQUIRED) + find_package(Qt5Test REQUIRED) + + add_definitions( + ${Qt5${_module}_DEFINITIONS} + ${Qt5Test_DEFINITIONS} + ) + + include_directories( + ${Qt5${_module}_INCLUDE_DIRS} + ${Qt5Test_INCLUDE_DIRS} + ) + + set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} ${Qt5${_module}_EXECUTABLE_COMPILE_FLAGS}") + + set(main_file "${CMAKE_CURRENT_SOURCE_DIR}/../main.cpp") + set(moc_file "${CMAKE_CURRENT_BINARY_DIR}/main.moc") + + qt5_generate_moc("${main_file}" "${moc_file}") + + add_executable(testapp_${_module} "${main_file}" "${moc_file}") + target_link_libraries(testapp_${_module} + ${Qt5${_module}_LIBRARIES} + ${Qt5Test_LIBRARIES} + ) +endmacro() + +add_subdirectory(core_only) +add_subdirectory(gui) +add_subdirectory(widgets) diff --git a/tests/auto/cmake/test_testlib_definitions/core_only/CMakeLists.txt b/tests/auto/cmake/test_testlib_definitions/core_only/CMakeLists.txt new file mode 100644 index 0000000000..cc68be18b8 --- /dev/null +++ b/tests/auto/cmake/test_testlib_definitions/core_only/CMakeLists.txt @@ -0,0 +1,4 @@ + +project(core_only) + +test_testlib_project(Core) diff --git a/tests/auto/cmake/test_testlib_definitions/gui/CMakeLists.txt b/tests/auto/cmake/test_testlib_definitions/gui/CMakeLists.txt new file mode 100644 index 0000000000..528ec7dc4e --- /dev/null +++ b/tests/auto/cmake/test_testlib_definitions/gui/CMakeLists.txt @@ -0,0 +1,4 @@ + +project(gui) + +test_testlib_project(Gui) diff --git a/tests/auto/cmake/test_testlib_definitions/main.cpp b/tests/auto/cmake/test_testlib_definitions/main.cpp new file mode 100644 index 0000000000..e7e9e57557 --- /dev/null +++ b/tests/auto/cmake/test_testlib_definitions/main.cpp @@ -0,0 +1,58 @@ +/**************************************************************************** +** +** Copyright (C) 2012 Klarälvdalens Datakonsult AB, a KDAB Group company, info@kdab.com, author Stephen Kelly +** Contact: http://www.qt-project.org/ +** +** This file is part of the test suite of the Qt Toolkit. +** +** $QT_BEGIN_LICENSE:LGPL$ +** GNU Lesser General Public License Usage +** This file may be used under the terms of the GNU Lesser General Public +** License version 2.1 as published by the Free Software Foundation and +** appearing in the file LICENSE.LGPL included in the packaging of this +** file. Please review the following information to ensure the GNU Lesser +** General Public License version 2.1 requirements will be met: +** http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. +** +** In addition, as a special exception, Nokia gives you certain additional +** rights. These rights are described in the Nokia Qt LGPL Exception +** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. +** +** GNU General Public License Usage +** Alternatively, this file may be used under the terms of the GNU General +** Public License version 3.0 as published by the Free Software Foundation +** and appearing in the file LICENSE.GPL included in the packaging of this +** file. Please review the following information to ensure the GNU General +** Public License version 3.0 requirements will be met: +** http://www.gnu.org/copyleft/gpl.html. +** +** Other Usage +** Alternatively, this file may be used in accordance with the terms and +** conditions contained in a signed written agreement between you and Nokia. +** +** +** +** +** +** +** $QT_END_LICENSE$ +** +****************************************************************************/ + +#include +#include + +class TestObject : public QObject +{ + Q_OBJECT +public: + TestObject(QObject *parent = 0) + : QObject(parent) + { + + } +}; + +QTEST_MAIN(TestObject) + +#include "main.moc" diff --git a/tests/auto/cmake/test_testlib_definitions/widgets/CMakeLists.txt b/tests/auto/cmake/test_testlib_definitions/widgets/CMakeLists.txt new file mode 100644 index 0000000000..0dbf9139e6 --- /dev/null +++ b/tests/auto/cmake/test_testlib_definitions/widgets/CMakeLists.txt @@ -0,0 +1,4 @@ + +project(widgets) + +test_testlib_project(Widgets) -- cgit v1.2.3