Commit d8f18e2b authored by Michal Klocek's avatar Michal Klocek
Browse files

Add testsupport to new configure system


Change-Id: I123ce22ea3a3d8b7b80c67fa322cb817d924f2e0
Reviewed-by: default avatarAllan Sandfeld Jensen <allan.jensen@qt.io>
Showing with 26 additions and 19 deletions
......@@ -444,6 +444,11 @@
"label": "UI Delegates",
"output": [ "privateFeature" ]
},
"testsupport": {
"label": "Test Support",
"autoDetect": "config.private_tests || call.isTestsInBuildParts",
"output": [ "privateFeature" ]
},
"webrtc": {
"label": "WebRTC",
"purpose": "Provides WebRTC support.",
......
......@@ -245,3 +245,8 @@ defineTest(isSanitizerLinuxClangVersionSupported) {
qtLog("Using Clang version $${QT_CLANG_MAJOR_VERSION}.$${QT_CLANG_MINOR_VERSION}, but at least Clang version 3.7 is required to build a sanitizer-enabled Qt WebEngine.")
return(false)
}
defineReplace(qtConfFunc_isTestsInBuildParts) {
contains(QT_BUILD_PARTS, tests): return(true)
return(false)
}
......@@ -116,18 +116,6 @@ defineReplace(gnOS) {
return(unknown)
}
defineTest(isDeveloperBuild) {
qtConfig(private_tests): return(true) # enabled for developer-build
return(false)
}
defineTest(isQMLTestSupportApiEnabled) {
isDeveloperBuild(): return(true)
contains(QT_BUILD_PARTS, tests): return(true)
contains(WEBENGINE_CONFIG, testsupport): return(true)
return(false)
}
defineTest(skipBuild) {
skipBuildReason = "$$skipBuildReason $${EOL}$$1"
export(skipBuildReason)
......
......@@ -26,7 +26,7 @@ use?(spellchecker):!use?(native_spellchecker):!cross_compile {
qwebengine_convert_dict.depends = core
}
isQMLTestSupportApiEnabled() {
qtConfig(testsupport) {
webengine_testsupport_plugin.subdir = webengine/plugin/testsupport
webengine_testsupport_plugin.target = sub-webengine-testsupport-plugin
webengine_testsupport_plugin.depends = webengine
......
include($$QTWEBENGINE_OUT_ROOT/qtwebengine-config.pri)
QT_FOR_CONFIG += webengine-private
TARGET = QtWebEngine
# For our export macros
......@@ -55,7 +58,7 @@ HEADERS = \
render_widget_host_view_qt_delegate_quickwindow.h \
ui_delegates_manager.h
isQMLTestSupportApiEnabled() {
qtConfig(testsupport) {
QT += testlib
SOURCES += api/qquickwebenginetestsupport.cpp
......
......@@ -100,7 +100,7 @@ OTHER_FILES += \
load(qt_build_paths)
DEFINES += QUICK_TEST_SOURCE_DIR=\\\"$$re_escape($$PWD$${QMAKE_DIR_SEP}data)\\\"
!isQMLTestSupportApiEnabled() {
!qtConfig(testsupport) {
PLUGIN_EXTENSION = .so
PLUGIN_PREFIX = lib
osx: PLUGIN_PREFIX = .dylib
......@@ -115,6 +115,6 @@ DEFINES += QUICK_TEST_SOURCE_DIR=\\\"$$re_escape($$PWD$${QMAKE_DIR_SEP}data)\\\"
warning("QML Test Support API is disabled. This means some QML tests that use Test Support API will fail.")
warning("Use the following command to build Test Support module and rebuild WebEngineView API:")
warning("cd $$BUILD_DIR && qmake WEBENGINE_CONFIG+=testsupport -r $$shell_path($$SRC_DIR/qtwebengine.pro) && make -C $$shell_path($$BUILD_DIR/src/webengine) clean && make")
warning("cd $$BUILD_DIR && qmake -r $$shell_path($$SRC_DIR/qtwebengine.pro -- --feature-testsupport=yes) && make -C $$shell_path($$BUILD_DIR/src/webengine) clean && make")
warning("After performing the command above make sure QML module \"QtWebEngine.testsupport\" is deployed at $$TESTSUPPORT_MODULE")
}
include($$QTWEBENGINE_OUT_ROOT/qtwebengine-config.pri)
QT_FOR_CONFIG += webengine-private
TEMPLATE = subdirs
SUBDIRS += \
......@@ -6,7 +9,7 @@ SUBDIRS += \
qquickwebenginedefaultsurfaceformat \
qquickwebengineview
isQMLTestSupportApiEnabled() {
qtConfig(testsupport) {
SUBDIRS += \
qmltests \
qquickwebengineviewgraphics
......
......@@ -115,7 +115,7 @@ inline bool waitForViewportReady(QQuickWebEngineView *webEngineView, int timeout
Q_UNUSED(timeout)
qFatal("Test Support API is disabled. The result is not reliable.\
Use the following command to build Test Support module and rebuild WebEngineView API:\
qmake -r WEBENGINE_CONFIG+=testsupport && make");
qmake -r -- --feature-testsupport=yes && make");
return false;
#endif
}
......
include($$QTWEBENGINE_OUT_ROOT/qtwebengine-config.pri)
QT_FOR_CONFIG += webengine-private
TEMPLATE = app
CONFIG += testcase
......@@ -16,7 +19,7 @@ QT += testlib network quick webengine
# This define is used by some tests to look up resources in the source tree
DEFINES += TESTS_SOURCE_DIR=\\\"$$PWD/\\\"
isQMLTestSupportApiEnabled() {
qtConfig(testsupport) {
DEFINES += ENABLE_QML_TESTSUPPORT_API
}
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment