-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
CMake: Skip / ignore failing tests on CMake platforms
Skip crashing tests and ignore failing tests on CMake platforms. Add missing QTEST_ENVIRONMENT=ci env var assignment to Coin test instructions. This was hardcoded by the Coin code for qmake configurations. Task-number: QTBUG-85364 Change-Id: Id2312e504a0d36b8f8596d4cebaa49c63731406e Reviewed-by: Qt CI Bot <[email protected]> Reviewed-by: Joerg Bornemann <[email protected]>
- Loading branch information
Showing
14 changed files
with
129 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,3 +5,5 @@ b2qt 64bit | |
[qMessagePattern:backtrace depth,separator] | ||
# QTBUG-63915 | ||
b2qt 64bit | ||
# QTBUG-85364 | ||
b2qt cmake |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
# Generated from plugin.pro. | ||
|
||
if(QT_BUILD_SHARED_LIBS) | ||
add_subdirectory(qfactoryloader) | ||
endif() | ||
add_subdirectory(quuid) | ||
if(QT_FEATURE_library) | ||
add_subdirectory(qpluginloader) | ||
add_subdirectory(qlibrary) | ||
endif() | ||
if(QT_BUILD_SHARED_LIBS AND QT_FEATURE_library) | ||
add_subdirectory(qplugin) | ||
endif() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
# Generated from thread.pro. | ||
|
||
if(QT_FEATURE_thread) | ||
add_subdirectory(qatomicint) | ||
add_subdirectory(qatomicinteger) | ||
add_subdirectory(qatomicpointer) | ||
add_subdirectory(qresultstore) | ||
add_subdirectory(qfuture) | ||
add_subdirectory(qfuturesynchronizer) | ||
add_subdirectory(qmutex) | ||
add_subdirectory(qmutexlocker) | ||
add_subdirectory(qreadlocker) | ||
add_subdirectory(qreadwritelock) | ||
add_subdirectory(qsemaphore) | ||
add_subdirectory(qthread) | ||
add_subdirectory(qthreadonce) | ||
add_subdirectory(qthreadpool) | ||
add_subdirectory(qthreadstorage) | ||
add_subdirectory(qwaitcondition) | ||
add_subdirectory(qwritelocker) | ||
add_subdirectory(qpromise) | ||
endif() | ||
if(TARGET Qt::Concurrent) | ||
add_subdirectory(qfuturewatcher) | ||
endif() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
# Generated from kernel.pro. | ||
|
||
if(QT_FEATURE_action) | ||
add_subdirectory(qaction) | ||
add_subdirectory(qactiongroup) | ||
endif() | ||
add_subdirectory(qbackingstore) | ||
add_subdirectory(qcursor) | ||
add_subdirectory(qdrag) | ||
add_subdirectory(qevent) | ||
add_subdirectory(qfileopenevent) | ||
add_subdirectory(qguieventdispatcher) | ||
add_subdirectory(qguitimer) | ||
add_subdirectory(qinputdevice) | ||
add_subdirectory(qinputmethod) | ||
add_subdirectory(qkeyevent) | ||
add_subdirectory(qmouseevent) | ||
add_subdirectory(qpalette) | ||
add_subdirectory(qscreen) | ||
add_subdirectory(qsurfaceformat) | ||
add_subdirectory(qwindow) | ||
add_subdirectory(qguiapplication) | ||
add_subdirectory(qpixelformat) | ||
add_subdirectory(qrasterwindow) | ||
add_subdirectory(qaddpostroutine) | ||
if(NOT ANDROID AND NOT UIKIT) | ||
add_subdirectory(qclipboard) | ||
endif() | ||
if(TARGET Qt::Network) | ||
add_subdirectory(qguieventloop) | ||
endif() | ||
if(QT_FEATURE_shortcut) | ||
add_subdirectory(qguimetatype) | ||
add_subdirectory(qguivariant) | ||
add_subdirectory(qkeysequence) | ||
add_subdirectory(qshortcut) | ||
endif() | ||
if(QT_FEATURE_highdpiscaling) | ||
add_subdirectory(qhighdpiscaling) | ||
endif() | ||
if(TARGET Qt::Widgets) | ||
add_subdirectory(qmouseevent_modal) | ||
add_subdirectory(qtouchevent) | ||
endif() | ||
if(QT_FEATURE_opengl) | ||
add_subdirectory(qopenglwindow) | ||
endif() | ||
if(TARGET Qt::Network AND WIN32) | ||
add_subdirectory(noqteventloop) | ||
endif() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
# Generated from rhi.pro. | ||
|
||
add_subdirectory(qshader) | ||
add_subdirectory(qrhi) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,9 @@ | ||
# Generated from rhi.pro. | ||
|
||
add_subdirectory(qshader) | ||
add_subdirectory(qrhi) | ||
# special case begin | ||
# QTBUG-85364 | ||
if(NOT LINUX) | ||
add_subdirectory(qrhi) | ||
endif() | ||
# special case end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
# QTBUG-85364 | ||
windows-10 gcc cmake |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
# QTBUG-85364 | ||
b2qt cmake |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
# QTBUG-85364 | ||
b2qt cmake |