summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStephen Kelly <stephen.kelly@kdab.com>2013-09-02 15:54:15 +0200
committerThe Qt Project <gerrit-noreply@qt-project.org>2013-09-03 09:06:18 +0200
commit9f98392aff316bff0b89ac20234234e1e3f060e2 (patch)
tree7d6642b8e8bc842329b146e27fe29137c943905f
parentd35d28017d731dba9e2a4f2622d2cec97e724e55 (diff)
downloadqtlocation-9f98392aff316bff0b89ac20234234e1e3f060e2.tar.gz
Update the cmake test for the location modules.
Task-number: QTBUG-33259 Change-Id: I6b6f2465732f8b3ae3c8613339be26f61bdfc88b Reviewed-by: Alex Blasche <alexander.blasche@digia.com>
-rw-r--r--tests/auto/cmake/CMakeLists.txt9
-rw-r--r--tests/auto/cmake/cmake.pro4
-rw-r--r--tests/auto/cmake/test_modules/CMakeLists.txt23
-rw-r--r--tests/auto/cmake/test_modules/main.cpp49
4 files changed, 10 insertions, 75 deletions
diff --git a/tests/auto/cmake/CMakeLists.txt b/tests/auto/cmake/CMakeLists.txt
index 4f15a69e..8430084d 100644
--- a/tests/auto/cmake/CMakeLists.txt
+++ b/tests/auto/cmake/CMakeLists.txt
@@ -9,4 +9,11 @@ find_package(Qt5Core REQUIRED)
include("${_Qt5CTestMacros}")
-expect_pass(test_modules)
+set(qt_module_includes
+ Location QPlaceCategory
+ Positioning QGeoRectangle
+)
+
+test_module_includes(
+ ${qt_module_includes}
+)
diff --git a/tests/auto/cmake/cmake.pro b/tests/auto/cmake/cmake.pro
index 8e4dae9f..69540e94 100644
--- a/tests/auto/cmake/cmake.pro
+++ b/tests/auto/cmake/cmake.pro
@@ -2,6 +2,6 @@
# Cause make to do nothing.
TEMPLATE = subdirs
-CONFIG += ctest_testcase
+CMAKE_QT_MODULES_UNDER_TEST = location positioning
-CONFIG+=insignificant_test # QTBUG-33259
+CONFIG += ctest_testcase
diff --git a/tests/auto/cmake/test_modules/CMakeLists.txt b/tests/auto/cmake/test_modules/CMakeLists.txt
deleted file mode 100644
index e25f1b91..00000000
--- a/tests/auto/cmake/test_modules/CMakeLists.txt
+++ /dev/null
@@ -1,23 +0,0 @@
-
-cmake_minimum_required(VERSION 2.8)
-
-project(test_modules)
-
-find_package(Qt5Gui REQUIRED)
-
-find_package(Qt5Location REQUIRED)
-
-include_directories(
- ${Qt5Location_INCLUDE_DIRS}
-)
-
-add_definitions(
- ${Qt5Location_DEFINITIONS}
-)
-
-set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} ${Qt5Core_EXECUTABLE_COMPILE_FLAGS}")
-
-add_executable(mainapp main.cpp)
-target_link_libraries(mainapp
- ${Qt5Location_LIBRARIES}
-)
diff --git a/tests/auto/cmake/test_modules/main.cpp b/tests/auto/cmake/test_modules/main.cpp
deleted file mode 100644
index e08261db..00000000
--- a/tests/auto/cmake/test_modules/main.cpp
+++ /dev/null
@@ -1,49 +0,0 @@
-/****************************************************************************
-**
-** Copyright (C) 2012 Klarälvdalens Datakonsult AB, a KDAB Group company, info@kdab.com, author Stephen Kelly <stephen.kelly@kdab.com>
-** Contact: http://www.qt-project.org/legal
-**
-** This file is part of the test suite of the Qt Toolkit.
-**
-** $QT_BEGIN_LICENSE:LGPL$
-** Commercial License Usage
-** Licensees holding valid commercial Qt licenses may use this file in
-** accordance with the commercial license agreement provided with the
-** Software or, alternatively, in accordance with the terms contained in
-** a written agreement between you and Digia. For licensing terms and
-** conditions see http://qt.digia.com/licensing. For further information
-** use the contact form at http://qt.digia.com/contact-us.
-**
-** GNU Lesser General Public License Usage
-** Alternatively, 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, Digia gives you certain additional
-** rights. These rights are described in the Digia 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.
-**
-**
-** $QT_END_LICENSE$
-**
-****************************************************************************/
-
-#include <QPlace>
-
-int main(int argc, char **argv)
-{
- QPlace place;
-
- return 0;
-}