cmake: Fix testlib/selftests
Actually build tst_selftest Fix the subdirs of it not to be actually built as tests (so that ctest doesn't pick them up and tries to run them) Change-Id: Id9d069f44241027dbd103884d36551163382b216 Reviewed-by: Alexandru Croitor <alexandru.croitor@qt.io> Reviewed-by: Qt CMake Build Bot
This commit is contained in:
parent
ff68d84d32
commit
6d1c695b0e
@ -1,42 +1,408 @@
|
|||||||
# add_subdirectory(alive) # TODO is commented in selftests.pri too. Investigate if should be readded
|
# special case begin - The whole file is manually generated
|
||||||
add_subdirectory(assert)
|
|
||||||
add_subdirectory(badxml)
|
|
||||||
add_subdirectory(benchlibcallgrind)
|
|
||||||
add_subdirectory(benchlibcounting)
|
|
||||||
add_subdirectory(benchlibeventcounter)
|
|
||||||
add_subdirectory(benchliboptions)
|
|
||||||
add_subdirectory(benchlibwalltime)
|
|
||||||
add_subdirectory(commandlinedata)
|
|
||||||
add_subdirectory(counting)
|
|
||||||
add_subdirectory(crashes)
|
|
||||||
add_subdirectory(datatable)
|
|
||||||
add_subdirectory(datetime)
|
|
||||||
add_subdirectory(deleteLater)
|
|
||||||
add_subdirectory(deleteLater_noApp)
|
|
||||||
add_subdirectory(differentexec)
|
|
||||||
add_subdirectory(expectfail)
|
|
||||||
add_subdirectory(failcleanup)
|
|
||||||
add_subdirectory(failinit)
|
|
||||||
add_subdirectory(failinitdata)
|
|
||||||
add_subdirectory(fetchbogus)
|
|
||||||
add_subdirectory(float)
|
|
||||||
add_subdirectory(globaldata)
|
|
||||||
add_subdirectory(longstring)
|
|
||||||
add_subdirectory(maxwarnings)
|
|
||||||
add_subdirectory(multiexec)
|
|
||||||
add_subdirectory(pairdiagnostics)
|
|
||||||
add_subdirectory(printdatatags)
|
|
||||||
add_subdirectory(printdatatagswithglobaltags)
|
|
||||||
add_subdirectory(qexecstringlist)
|
|
||||||
add_subdirectory(singleskip)
|
|
||||||
add_subdirectory(skip)
|
|
||||||
add_subdirectory(skipcleanup)
|
|
||||||
add_subdirectory(skipinit)
|
|
||||||
add_subdirectory(skipinitdata)
|
|
||||||
add_subdirectory(sleep)
|
|
||||||
add_subdirectory(strcmp)
|
|
||||||
add_subdirectory(subtest)
|
|
||||||
add_subdirectory(tuplediagnostics)
|
|
||||||
add_subdirectory(warnings)
|
|
||||||
add_subdirectory(xunit)
|
|
||||||
|
|
||||||
|
if(NOT WINRT)
|
||||||
|
add_subdirectory(assert)
|
||||||
|
add_subdirectory(badxml)
|
||||||
|
add_subdirectory(benchlibcallgrind)
|
||||||
|
add_subdirectory(benchlibcounting)
|
||||||
|
add_subdirectory(benchlibeventcounter)
|
||||||
|
add_subdirectory(benchliboptions)
|
||||||
|
add_subdirectory(benchlibtickcounter)
|
||||||
|
add_subdirectory(benchlibwalltime)
|
||||||
|
add_subdirectory(blacklisted)
|
||||||
|
add_subdirectory(cmptest)
|
||||||
|
add_subdirectory(commandlinedata)
|
||||||
|
add_subdirectory(counting)
|
||||||
|
add_subdirectory(crashes)
|
||||||
|
add_subdirectory(datatable)
|
||||||
|
add_subdirectory(datetime)
|
||||||
|
add_subdirectory(deleteLater)
|
||||||
|
add_subdirectory(deleteLater_noApp)
|
||||||
|
add_subdirectory(differentexec)
|
||||||
|
add_subdirectory(exceptionthrow)
|
||||||
|
add_subdirectory(expectfail)
|
||||||
|
add_subdirectory(failcleanup)
|
||||||
|
add_subdirectory(faildatatype)
|
||||||
|
add_subdirectory(failfetchtype)
|
||||||
|
add_subdirectory(failinit)
|
||||||
|
add_subdirectory(failinitdata)
|
||||||
|
add_subdirectory(fetchbogus)
|
||||||
|
add_subdirectory(findtestdata)
|
||||||
|
add_subdirectory(float)
|
||||||
|
add_subdirectory(globaldata)
|
||||||
|
add_subdirectory(longstring)
|
||||||
|
add_subdirectory(maxwarnings)
|
||||||
|
add_subdirectory(multiexec)
|
||||||
|
add_subdirectory(pairdiagnostics)
|
||||||
|
add_subdirectory(printdatatags)
|
||||||
|
add_subdirectory(printdatatagswithglobaltags)
|
||||||
|
add_subdirectory(qexecstringlist)
|
||||||
|
add_subdirectory(silent)
|
||||||
|
add_subdirectory(signaldumper)
|
||||||
|
add_subdirectory(singleskip)
|
||||||
|
add_subdirectory(skip)
|
||||||
|
add_subdirectory(skipcleanup)
|
||||||
|
add_subdirectory(skipinit)
|
||||||
|
add_subdirectory(skipinitdata)
|
||||||
|
add_subdirectory(sleep)
|
||||||
|
add_subdirectory(strcmp)
|
||||||
|
add_subdirectory(subtest)
|
||||||
|
add_subdirectory(testlib)
|
||||||
|
add_subdirectory(tuplediagnostics)
|
||||||
|
add_subdirectory(verbose1)
|
||||||
|
add_subdirectory(verbose2)
|
||||||
|
add_subdirectory(verifyexceptionthrown)
|
||||||
|
add_subdirectory(warnings)
|
||||||
|
add_subdirectory(watchdog)
|
||||||
|
add_subdirectory(xunit)
|
||||||
|
|
||||||
|
if(TARGET Qt::Gui)
|
||||||
|
add_subdirectory(keyboard)
|
||||||
|
add_subdirectory(mouse)
|
||||||
|
endif()
|
||||||
|
endif()
|
||||||
|
|
||||||
|
#####################################################################
|
||||||
|
## tst_selftests Test:
|
||||||
|
#####################################################################
|
||||||
|
|
||||||
|
add_qt_test(tst_selftests
|
||||||
|
SOURCES
|
||||||
|
../../../shared/emulationdetector.h
|
||||||
|
tst_selftests.cpp
|
||||||
|
INCLUDE_DIRECTORIES
|
||||||
|
../../../shared
|
||||||
|
LIBRARIES
|
||||||
|
Qt::TestPrivate
|
||||||
|
)
|
||||||
|
|
||||||
|
add_qt_resource(tst_selftests "expected_files" PREFIX "/" FILES
|
||||||
|
expected_assert.lightxml
|
||||||
|
expected_assert.tap
|
||||||
|
expected_assert.teamcity
|
||||||
|
expected_assert.txt
|
||||||
|
expected_assert.xml
|
||||||
|
expected_assert.xunitxml
|
||||||
|
expected_badxml.lightxml
|
||||||
|
expected_badxml.tap
|
||||||
|
expected_badxml.teamcity
|
||||||
|
expected_badxml.txt
|
||||||
|
expected_badxml.xml
|
||||||
|
expected_badxml.xunitxml
|
||||||
|
expected_benchlibcallgrind_0.txt
|
||||||
|
expected_benchlibcallgrind_1.txt
|
||||||
|
expected_benchlibcallgrind.csv
|
||||||
|
expected_benchlibcallgrind.lightxml
|
||||||
|
expected_benchlibcallgrind.tap
|
||||||
|
expected_benchlibcallgrind.teamcity
|
||||||
|
expected_benchlibcallgrind.xml
|
||||||
|
expected_benchlibcallgrind.xunitxml
|
||||||
|
expected_benchlibcounting.csv
|
||||||
|
expected_benchlibcounting.lightxml
|
||||||
|
expected_benchlibcounting.tap
|
||||||
|
expected_benchlibcounting.teamcity
|
||||||
|
expected_benchlibcounting.txt
|
||||||
|
expected_benchlibcounting.xml
|
||||||
|
expected_benchlibcounting.xunitxml
|
||||||
|
expected_benchlibeventcounter.csv
|
||||||
|
expected_benchlibeventcounter.lightxml
|
||||||
|
expected_benchlibeventcounter.tap
|
||||||
|
expected_benchlibeventcounter.teamcity
|
||||||
|
expected_benchlibeventcounter.txt
|
||||||
|
expected_benchlibeventcounter.xml
|
||||||
|
expected_benchlibeventcounter.xunitxml
|
||||||
|
expected_benchliboptions.csv
|
||||||
|
expected_benchliboptions.lightxml
|
||||||
|
expected_benchliboptions.tap
|
||||||
|
expected_benchliboptions.teamcity
|
||||||
|
expected_benchliboptions.txt
|
||||||
|
expected_benchliboptions.xml
|
||||||
|
expected_benchliboptions.xunitxml
|
||||||
|
expected_benchlibtickcounter.csv
|
||||||
|
expected_benchlibtickcounter.lightxml
|
||||||
|
expected_benchlibtickcounter.tap
|
||||||
|
expected_benchlibtickcounter.teamcity
|
||||||
|
expected_benchlibtickcounter.txt
|
||||||
|
expected_benchlibtickcounter.xml
|
||||||
|
expected_benchlibtickcounter.xunitxml
|
||||||
|
expected_benchlibwalltime.csv
|
||||||
|
expected_benchlibwalltime.lightxml
|
||||||
|
expected_benchlibwalltime.tap
|
||||||
|
expected_benchlibwalltime.teamcity
|
||||||
|
expected_benchlibwalltime.txt
|
||||||
|
expected_benchlibwalltime.xml
|
||||||
|
expected_benchlibwalltime.xunitxml
|
||||||
|
expected_blacklisted.lightxml
|
||||||
|
expected_blacklisted.tap
|
||||||
|
expected_blacklisted.teamcity
|
||||||
|
expected_blacklisted.txt
|
||||||
|
expected_blacklisted.xml
|
||||||
|
expected_blacklisted.xunitxml
|
||||||
|
expected_cmptest.lightxml
|
||||||
|
expected_cmptest.tap
|
||||||
|
expected_cmptest.teamcity
|
||||||
|
expected_cmptest.txt
|
||||||
|
expected_cmptest.xml
|
||||||
|
expected_cmptest.xunitxml
|
||||||
|
expected_commandlinedata.lightxml
|
||||||
|
expected_commandlinedata.tap
|
||||||
|
expected_commandlinedata.teamcity
|
||||||
|
expected_commandlinedata.txt
|
||||||
|
expected_commandlinedata.xml
|
||||||
|
expected_commandlinedata.xunitxml
|
||||||
|
expected_counting.lightxml
|
||||||
|
expected_counting.tap
|
||||||
|
expected_counting.teamcity
|
||||||
|
expected_counting.txt
|
||||||
|
expected_counting.xml
|
||||||
|
expected_counting.xunitxml
|
||||||
|
expected_crashes_1.txt
|
||||||
|
expected_crashes_2.txt
|
||||||
|
expected_crashes_3.txt
|
||||||
|
expected_crashes_4.txt
|
||||||
|
expected_crashes_5.txt
|
||||||
|
expected_datatable.lightxml
|
||||||
|
expected_datatable.tap
|
||||||
|
expected_datatable.teamcity
|
||||||
|
expected_datatable.txt
|
||||||
|
expected_datatable.xml
|
||||||
|
expected_datatable.xunitxml
|
||||||
|
expected_datetime.lightxml
|
||||||
|
expected_datetime.tap
|
||||||
|
expected_datetime.teamcity
|
||||||
|
expected_datetime.txt
|
||||||
|
expected_datetime.xml
|
||||||
|
expected_datetime.xunitxml
|
||||||
|
expected_differentexec.lightxml
|
||||||
|
expected_differentexec.tap
|
||||||
|
expected_differentexec.teamcity
|
||||||
|
expected_differentexec.txt
|
||||||
|
expected_differentexec.xml
|
||||||
|
expected_differentexec.xunitxml
|
||||||
|
expected_exceptionthrow.lightxml
|
||||||
|
expected_exceptionthrow.tap
|
||||||
|
expected_exceptionthrow.teamcity
|
||||||
|
expected_exceptionthrow.txt
|
||||||
|
expected_exceptionthrow.xml
|
||||||
|
expected_exceptionthrow.xunitxml
|
||||||
|
expected_expectfail.lightxml
|
||||||
|
expected_expectfail.tap
|
||||||
|
expected_expectfail.teamcity
|
||||||
|
expected_expectfail.txt
|
||||||
|
expected_expectfail.xml
|
||||||
|
expected_expectfail.xunitxml
|
||||||
|
expected_failcleanup.lightxml
|
||||||
|
expected_failcleanup.tap
|
||||||
|
expected_failcleanup.teamcity
|
||||||
|
expected_failcleanup.txt
|
||||||
|
expected_failcleanup.xml
|
||||||
|
expected_failcleanup.xunitxml
|
||||||
|
expected_faildatatype.lightxml
|
||||||
|
expected_faildatatype.tap
|
||||||
|
expected_faildatatype.teamcity
|
||||||
|
expected_faildatatype.txt
|
||||||
|
expected_faildatatype.xml
|
||||||
|
expected_faildatatype.xunitxml
|
||||||
|
expected_failfetchtype.lightxml
|
||||||
|
expected_failfetchtype.tap
|
||||||
|
expected_failfetchtype.teamcity
|
||||||
|
expected_failfetchtype.txt
|
||||||
|
expected_failfetchtype.xml
|
||||||
|
expected_failfetchtype.xunitxml
|
||||||
|
expected_failinitdata.lightxml
|
||||||
|
expected_failinitdata.tap
|
||||||
|
expected_failinitdata.teamcity
|
||||||
|
expected_failinitdata.txt
|
||||||
|
expected_failinitdata.xml
|
||||||
|
expected_failinitdata.xunitxml
|
||||||
|
expected_failinit.lightxml
|
||||||
|
expected_failinit.tap
|
||||||
|
expected_failinit.teamcity
|
||||||
|
expected_failinit.txt
|
||||||
|
expected_failinit.xml
|
||||||
|
expected_failinit.xunitxml
|
||||||
|
expected_fetchbogus.lightxml
|
||||||
|
expected_fetchbogus.tap
|
||||||
|
expected_fetchbogus.teamcity
|
||||||
|
expected_fetchbogus.txt
|
||||||
|
expected_fetchbogus.xml
|
||||||
|
expected_fetchbogus.xunitxml
|
||||||
|
expected_findtestdata.lightxml
|
||||||
|
expected_findtestdata.tap
|
||||||
|
expected_findtestdata.teamcity
|
||||||
|
expected_findtestdata.txt
|
||||||
|
expected_findtestdata.xml
|
||||||
|
expected_findtestdata.xunitxml
|
||||||
|
expected_float.lightxml
|
||||||
|
expected_float.tap
|
||||||
|
expected_float.teamcity
|
||||||
|
expected_float.txt
|
||||||
|
expected_float.xml
|
||||||
|
expected_float.xunitxml
|
||||||
|
expected_globaldata.lightxml
|
||||||
|
expected_globaldata.tap
|
||||||
|
expected_globaldata.teamcity
|
||||||
|
expected_globaldata.txt
|
||||||
|
expected_globaldata.xml
|
||||||
|
expected_globaldata.xunitxml
|
||||||
|
expected_keyboard.lightxml
|
||||||
|
expected_keyboard.tap
|
||||||
|
expected_keyboard.teamcity
|
||||||
|
expected_keyboard.txt
|
||||||
|
expected_keyboard.xml
|
||||||
|
expected_keyboard.xunitxml
|
||||||
|
expected_longstring.lightxml
|
||||||
|
expected_longstring.tap
|
||||||
|
expected_longstring.teamcity
|
||||||
|
expected_longstring.txt
|
||||||
|
expected_longstring.xml
|
||||||
|
expected_longstring.xunitxml
|
||||||
|
expected_maxwarnings.lightxml
|
||||||
|
expected_maxwarnings.tap
|
||||||
|
expected_maxwarnings.teamcity
|
||||||
|
expected_maxwarnings.txt
|
||||||
|
expected_maxwarnings.xml
|
||||||
|
expected_maxwarnings.xunitxml
|
||||||
|
expected_multiexec.lightxml
|
||||||
|
expected_multiexec.tap
|
||||||
|
expected_multiexec.teamcity
|
||||||
|
expected_multiexec.txt
|
||||||
|
expected_multiexec.xml
|
||||||
|
expected_multiexec.xunitxml
|
||||||
|
expected_pairdiagnostics.lightxml
|
||||||
|
expected_pairdiagnostics.tap
|
||||||
|
expected_pairdiagnostics.teamcity
|
||||||
|
expected_pairdiagnostics.txt
|
||||||
|
expected_pairdiagnostics.xml
|
||||||
|
expected_pairdiagnostics.xunitxml
|
||||||
|
expected_printdatatags.txt
|
||||||
|
expected_printdatatagswithglobaltags.txt
|
||||||
|
expected_qexecstringlist.lightxml
|
||||||
|
expected_qexecstringlist.tap
|
||||||
|
expected_qexecstringlist.teamcity
|
||||||
|
expected_qexecstringlist.txt
|
||||||
|
expected_qexecstringlist.xml
|
||||||
|
expected_qexecstringlist.xunitxml
|
||||||
|
expected_signaldumper.lightxml
|
||||||
|
expected_signaldumper.tap
|
||||||
|
expected_signaldumper.teamcity
|
||||||
|
expected_signaldumper.txt
|
||||||
|
expected_signaldumper.xml
|
||||||
|
expected_signaldumper.xunitxml
|
||||||
|
expected_silent.lightxml
|
||||||
|
expected_silent.tap
|
||||||
|
expected_silent.teamcity
|
||||||
|
expected_silent.txt
|
||||||
|
expected_silent.xml
|
||||||
|
expected_silent.xunitxml
|
||||||
|
expected_singleskip.lightxml
|
||||||
|
expected_singleskip.tap
|
||||||
|
expected_singleskip.teamcity
|
||||||
|
expected_singleskip.txt
|
||||||
|
expected_singleskip.xml
|
||||||
|
expected_singleskip.xunitxml
|
||||||
|
expected_skipcleanup.lightxml
|
||||||
|
expected_skipcleanup.tap
|
||||||
|
expected_skipcleanup.teamcity
|
||||||
|
expected_skipcleanup.txt
|
||||||
|
expected_skipcleanup.xml
|
||||||
|
expected_skipcleanup.xunitxml
|
||||||
|
expected_skipinitdata.lightxml
|
||||||
|
expected_skipinitdata.tap
|
||||||
|
expected_skipinitdata.teamcity
|
||||||
|
expected_skipinitdata.txt
|
||||||
|
expected_skipinitdata.xml
|
||||||
|
expected_skipinitdata.xunitxml
|
||||||
|
expected_skipinit.lightxml
|
||||||
|
expected_skipinit.tap
|
||||||
|
expected_skipinit.teamcity
|
||||||
|
expected_skipinit.txt
|
||||||
|
expected_skipinit.xml
|
||||||
|
expected_skipinit.xunitxml
|
||||||
|
expected_skip.lightxml
|
||||||
|
expected_skip.tap
|
||||||
|
expected_skip.teamcity
|
||||||
|
expected_skip.txt
|
||||||
|
expected_skip.xml
|
||||||
|
expected_skip.xunitxml
|
||||||
|
expected_sleep.lightxml
|
||||||
|
expected_sleep.tap
|
||||||
|
expected_sleep.teamcity
|
||||||
|
expected_sleep.txt
|
||||||
|
expected_sleep.xml
|
||||||
|
expected_sleep.xunitxml
|
||||||
|
expected_strcmp.lightxml
|
||||||
|
expected_strcmp.tap
|
||||||
|
expected_strcmp.teamcity
|
||||||
|
expected_strcmp.txt
|
||||||
|
expected_strcmp.xml
|
||||||
|
expected_strcmp.xunitxml
|
||||||
|
expected_subtest.lightxml
|
||||||
|
expected_subtest.tap
|
||||||
|
expected_subtest.teamcity
|
||||||
|
expected_subtest.txt
|
||||||
|
expected_subtest.xml
|
||||||
|
expected_subtest.xunitxml
|
||||||
|
expected_testlib.lightxml
|
||||||
|
expected_testlib.tap
|
||||||
|
expected_testlib.teamcity
|
||||||
|
expected_testlib.txt
|
||||||
|
expected_testlib.xml
|
||||||
|
expected_testlib.xunitxml
|
||||||
|
expected_tuplediagnostics.lightxml
|
||||||
|
expected_tuplediagnostics.tap
|
||||||
|
expected_tuplediagnostics.teamcity
|
||||||
|
expected_tuplediagnostics.txt
|
||||||
|
expected_tuplediagnostics.xml
|
||||||
|
expected_tuplediagnostics.xunitxml
|
||||||
|
expected_verbose1.lightxml
|
||||||
|
expected_verbose1.tap
|
||||||
|
expected_verbose1.teamcity
|
||||||
|
expected_verbose1.txt
|
||||||
|
expected_verbose1.xml
|
||||||
|
expected_verbose1.xunitxml
|
||||||
|
expected_verbose2.lightxml
|
||||||
|
expected_verbose2.tap
|
||||||
|
expected_verbose2.teamcity
|
||||||
|
expected_verbose2.txt
|
||||||
|
expected_verbose2.xml
|
||||||
|
expected_verbose2.xunitxml
|
||||||
|
expected_verifyexceptionthrown.lightxml
|
||||||
|
expected_verifyexceptionthrown.tap
|
||||||
|
expected_verifyexceptionthrown.teamcity
|
||||||
|
expected_verifyexceptionthrown.txt
|
||||||
|
expected_verifyexceptionthrown.xml
|
||||||
|
expected_verifyexceptionthrown.xunitxml
|
||||||
|
expected_warnings.lightxml
|
||||||
|
expected_warnings.tap
|
||||||
|
expected_warnings.teamcity
|
||||||
|
expected_warnings.txt
|
||||||
|
expected_warnings.xml
|
||||||
|
expected_warnings.xunitxml
|
||||||
|
expected_watchdog.lightxml
|
||||||
|
expected_watchdog.tap
|
||||||
|
expected_watchdog.teamcity
|
||||||
|
expected_watchdog.txt
|
||||||
|
expected_watchdog.xml
|
||||||
|
expected_watchdog.xunitxml
|
||||||
|
expected_xunit.lightxml
|
||||||
|
expected_xunit.tap
|
||||||
|
expected_xunit.teamcity
|
||||||
|
expected_xunit.txt
|
||||||
|
expected_xunit.xml
|
||||||
|
expected_xunit.xunitxml
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
|
#### Keys ignored in scope 1:.:.:test.pro:<TRUE>:
|
||||||
|
# CONFIG = "testcase"
|
||||||
|
# expected_files.base = "$$PWD/.."
|
||||||
|
# expected_files.files = "$$files$$PWD/../expected_*"
|
||||||
|
|
||||||
|
## Scopes:
|
||||||
|
#####################################################################
|
||||||
|
|
||||||
|
#### Keys ignored in scope 5:.:.:test.pro:NOT ANDROID AND NOT WINRT AND for(file,SUBPROGRAMS):
|
||||||
|
# TEST_HELPER_INSTALLS = "../$${file}/$${file}"
|
||||||
|
|
||||||
|
# special case end
|
||||||
|
@ -1 +1,24 @@
|
|||||||
add_qt_test(assert SOURCES tst_assert.cpp)
|
# Generated from assert.pro.
|
||||||
|
|
||||||
|
#####################################################################
|
||||||
|
## assert Binary:
|
||||||
|
#####################################################################
|
||||||
|
|
||||||
|
add_qt_executable(assert
|
||||||
|
NO_INSTALL # special case
|
||||||
|
OUTPUT_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR} # special case
|
||||||
|
GUI
|
||||||
|
SOURCES
|
||||||
|
tst_assert.cpp
|
||||||
|
PUBLIC_LIBRARIES
|
||||||
|
Qt::Test
|
||||||
|
)
|
||||||
|
|
||||||
|
#### Keys ignored in scope 1:.:.:assert.pro:<TRUE>:
|
||||||
|
# CONFIG = "-debug_and_release_target"
|
||||||
|
|
||||||
|
## Scopes:
|
||||||
|
#####################################################################
|
||||||
|
|
||||||
|
#### Keys ignored in scope 2:.:.:assert.pro:APPLE_OSX:
|
||||||
|
# CONFIG = "-app_bundle"
|
||||||
|
@ -1 +1,26 @@
|
|||||||
add_qt_test(badxml SOURCES tst_badxml.cpp LIBRARIES Qt::CorePrivate)
|
# Generated from badxml.pro.
|
||||||
|
|
||||||
|
#####################################################################
|
||||||
|
## badxml Binary:
|
||||||
|
#####################################################################
|
||||||
|
|
||||||
|
add_qt_executable(badxml
|
||||||
|
NO_INSTALL # special case
|
||||||
|
OUTPUT_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR} # special case
|
||||||
|
GUI
|
||||||
|
SOURCES
|
||||||
|
tst_badxml.cpp
|
||||||
|
LIBRARIES
|
||||||
|
Qt::CorePrivate
|
||||||
|
PUBLIC_LIBRARIES
|
||||||
|
Qt::Test
|
||||||
|
)
|
||||||
|
|
||||||
|
#### Keys ignored in scope 1:.:.:badxml.pro:<TRUE>:
|
||||||
|
# CONFIG = "-debug_and_release_target"
|
||||||
|
|
||||||
|
## Scopes:
|
||||||
|
#####################################################################
|
||||||
|
|
||||||
|
#### Keys ignored in scope 2:.:.:badxml.pro:APPLE_OSX:
|
||||||
|
# CONFIG = "-app_bundle"
|
||||||
|
@ -1 +1,24 @@
|
|||||||
add_qt_test(benchlibcallgrind SOURCES tst_benchlibcallgrind.cpp)
|
# Generated from benchlibcallgrind.pro.
|
||||||
|
|
||||||
|
#####################################################################
|
||||||
|
## benchlibcallgrind Binary:
|
||||||
|
#####################################################################
|
||||||
|
|
||||||
|
add_qt_executable(benchlibcallgrind
|
||||||
|
NO_INSTALL # special case
|
||||||
|
OUTPUT_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR} # special case
|
||||||
|
GUI
|
||||||
|
SOURCES
|
||||||
|
tst_benchlibcallgrind.cpp
|
||||||
|
PUBLIC_LIBRARIES
|
||||||
|
Qt::Test
|
||||||
|
)
|
||||||
|
|
||||||
|
#### Keys ignored in scope 1:.:.:benchlibcallgrind.pro:<TRUE>:
|
||||||
|
# CONFIG = "-debug_and_release_target"
|
||||||
|
|
||||||
|
## Scopes:
|
||||||
|
#####################################################################
|
||||||
|
|
||||||
|
#### Keys ignored in scope 2:.:.:benchlibcallgrind.pro:APPLE_OSX:
|
||||||
|
# CONFIG = "-app_bundle"
|
||||||
|
@ -1 +1,24 @@
|
|||||||
add_qt_test(benchlibcounting SOURCES tst_benchlibcounting.cpp)
|
# Generated from benchlibcounting.pro.
|
||||||
|
|
||||||
|
#####################################################################
|
||||||
|
## benchlibcounting Binary:
|
||||||
|
#####################################################################
|
||||||
|
|
||||||
|
add_qt_executable(benchlibcounting
|
||||||
|
NO_INSTALL # special case
|
||||||
|
OUTPUT_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR} # special case
|
||||||
|
GUI
|
||||||
|
SOURCES
|
||||||
|
tst_benchlibcounting.cpp
|
||||||
|
PUBLIC_LIBRARIES
|
||||||
|
Qt::Test
|
||||||
|
)
|
||||||
|
|
||||||
|
#### Keys ignored in scope 1:.:.:benchlibcounting.pro:<TRUE>:
|
||||||
|
# CONFIG = "-debug_and_release_target"
|
||||||
|
|
||||||
|
## Scopes:
|
||||||
|
#####################################################################
|
||||||
|
|
||||||
|
#### Keys ignored in scope 2:.:.:benchlibcounting.pro:APPLE_OSX:
|
||||||
|
# CONFIG = "-app_bundle"
|
||||||
|
@ -1 +1,24 @@
|
|||||||
add_qt_test(benchlibeventcounter SOURCES tst_benchlibeventcounter.cpp)
|
# Generated from benchlibeventcounter.pro.
|
||||||
|
|
||||||
|
#####################################################################
|
||||||
|
## benchlibeventcounter Binary:
|
||||||
|
#####################################################################
|
||||||
|
|
||||||
|
add_qt_executable(benchlibeventcounter
|
||||||
|
NO_INSTALL # special case
|
||||||
|
OUTPUT_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR} # special case
|
||||||
|
GUI
|
||||||
|
SOURCES
|
||||||
|
tst_benchlibeventcounter.cpp
|
||||||
|
PUBLIC_LIBRARIES
|
||||||
|
Qt::Test
|
||||||
|
)
|
||||||
|
|
||||||
|
#### Keys ignored in scope 1:.:.:benchlibeventcounter.pro:<TRUE>:
|
||||||
|
# CONFIG = "-debug_and_release_target"
|
||||||
|
|
||||||
|
## Scopes:
|
||||||
|
#####################################################################
|
||||||
|
|
||||||
|
#### Keys ignored in scope 2:.:.:benchlibeventcounter.pro:APPLE_OSX:
|
||||||
|
# CONFIG = "-app_bundle"
|
||||||
|
@ -1 +1,24 @@
|
|||||||
add_qt_test(benchliboptions SOURCES tst_benchliboptions.cpp)
|
# Generated from benchliboptions.pro.
|
||||||
|
|
||||||
|
#####################################################################
|
||||||
|
## benchliboptions Binary:
|
||||||
|
#####################################################################
|
||||||
|
|
||||||
|
add_qt_executable(benchliboptions
|
||||||
|
NO_INSTALL # special case
|
||||||
|
OUTPUT_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR} # special case
|
||||||
|
GUI
|
||||||
|
SOURCES
|
||||||
|
tst_benchliboptions.cpp
|
||||||
|
PUBLIC_LIBRARIES
|
||||||
|
Qt::Test
|
||||||
|
)
|
||||||
|
|
||||||
|
#### Keys ignored in scope 1:.:.:benchliboptions.pro:<TRUE>:
|
||||||
|
# CONFIG = "-debug_and_release_target"
|
||||||
|
|
||||||
|
## Scopes:
|
||||||
|
#####################################################################
|
||||||
|
|
||||||
|
#### Keys ignored in scope 2:.:.:benchliboptions.pro:APPLE_OSX:
|
||||||
|
# CONFIG = "-app_bundle"
|
||||||
|
@ -0,0 +1,26 @@
|
|||||||
|
# Generated from benchlibtickcounter.pro.
|
||||||
|
|
||||||
|
#####################################################################
|
||||||
|
## benchlibtickcounter Binary:
|
||||||
|
#####################################################################
|
||||||
|
|
||||||
|
add_qt_executable(benchlibtickcounter
|
||||||
|
NO_INSTALL # special case
|
||||||
|
OUTPUT_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR} # special case
|
||||||
|
GUI
|
||||||
|
SOURCES
|
||||||
|
tst_benchlibtickcounter.cpp
|
||||||
|
LIBRARIES
|
||||||
|
Qt::TestPrivate
|
||||||
|
PUBLIC_LIBRARIES
|
||||||
|
Qt::Test
|
||||||
|
)
|
||||||
|
|
||||||
|
#### Keys ignored in scope 1:.:.:benchlibtickcounter.pro:<TRUE>:
|
||||||
|
# CONFIG = "-debug_and_release_target"
|
||||||
|
|
||||||
|
## Scopes:
|
||||||
|
#####################################################################
|
||||||
|
|
||||||
|
#### Keys ignored in scope 2:.:.:benchlibtickcounter.pro:APPLE_OSX:
|
||||||
|
# CONFIG = "-app_bundle"
|
@ -1 +1,24 @@
|
|||||||
add_qt_test(benchlibwalltime SOURCES tst_benchlibwalltime.cpp)
|
# Generated from benchlibwalltime.pro.
|
||||||
|
|
||||||
|
#####################################################################
|
||||||
|
## benchlibwalltime Binary:
|
||||||
|
#####################################################################
|
||||||
|
|
||||||
|
add_qt_executable(benchlibwalltime
|
||||||
|
NO_INSTALL # special case
|
||||||
|
OUTPUT_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR} # special case
|
||||||
|
GUI
|
||||||
|
SOURCES
|
||||||
|
tst_benchlibwalltime.cpp
|
||||||
|
PUBLIC_LIBRARIES
|
||||||
|
Qt::Test
|
||||||
|
)
|
||||||
|
|
||||||
|
#### Keys ignored in scope 1:.:.:benchlibwalltime.pro:<TRUE>:
|
||||||
|
# CONFIG = "-debug_and_release_target"
|
||||||
|
|
||||||
|
## Scopes:
|
||||||
|
#####################################################################
|
||||||
|
|
||||||
|
#### Keys ignored in scope 2:.:.:benchlibwalltime.pro:APPLE_OSX:
|
||||||
|
# CONFIG = "-app_bundle"
|
||||||
|
26
tests/auto/testlib/selftests/blacklisted/CMakeLists.txt
Normal file
26
tests/auto/testlib/selftests/blacklisted/CMakeLists.txt
Normal file
@ -0,0 +1,26 @@
|
|||||||
|
# Generated from blacklisted.pro.
|
||||||
|
|
||||||
|
#####################################################################
|
||||||
|
## blacklisted Binary:
|
||||||
|
#####################################################################
|
||||||
|
|
||||||
|
add_qt_executable(blacklisted
|
||||||
|
NO_INSTALL # special case
|
||||||
|
OUTPUT_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR} # special case
|
||||||
|
GUI
|
||||||
|
SOURCES
|
||||||
|
tst_blacklisted.cpp
|
||||||
|
LIBRARIES
|
||||||
|
Qt::TestPrivate
|
||||||
|
PUBLIC_LIBRARIES
|
||||||
|
Qt::Test
|
||||||
|
)
|
||||||
|
|
||||||
|
#### Keys ignored in scope 1:.:.:blacklisted.pro:<TRUE>:
|
||||||
|
# CONFIG = "-debug_and_release_target"
|
||||||
|
|
||||||
|
## Scopes:
|
||||||
|
#####################################################################
|
||||||
|
|
||||||
|
#### Keys ignored in scope 2:.:.:blacklisted.pro:APPLE_OSX:
|
||||||
|
# CONFIG = "-app_bundle"
|
29
tests/auto/testlib/selftests/cmptest/CMakeLists.txt
Normal file
29
tests/auto/testlib/selftests/cmptest/CMakeLists.txt
Normal file
@ -0,0 +1,29 @@
|
|||||||
|
# Generated from cmptest.pro.
|
||||||
|
|
||||||
|
#####################################################################
|
||||||
|
## cmptest Binary:
|
||||||
|
#####################################################################
|
||||||
|
|
||||||
|
add_qt_executable(cmptest
|
||||||
|
NO_INSTALL # special case
|
||||||
|
OUTPUT_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR} # special case
|
||||||
|
GUI
|
||||||
|
SOURCES
|
||||||
|
tst_cmptest.cpp
|
||||||
|
PUBLIC_LIBRARIES
|
||||||
|
Qt::Test
|
||||||
|
)
|
||||||
|
|
||||||
|
#### Keys ignored in scope 1:.:.:cmptest.pro:<TRUE>:
|
||||||
|
# CONFIG = "-debug_and_release_target"
|
||||||
|
|
||||||
|
## Scopes:
|
||||||
|
#####################################################################
|
||||||
|
|
||||||
|
extend_target(cmptest CONDITION TARGET Qt::Gui
|
||||||
|
PUBLIC_LIBRARIES
|
||||||
|
Qt::Gui
|
||||||
|
)
|
||||||
|
|
||||||
|
#### Keys ignored in scope 3:.:.:cmptest.pro:APPLE_OSX:
|
||||||
|
# CONFIG = "-app_bundle"
|
@ -1 +1,24 @@
|
|||||||
add_qt_test(commandlinedata SOURCES tst_commandlinedata.cpp)
|
# Generated from commandlinedata.pro.
|
||||||
|
|
||||||
|
#####################################################################
|
||||||
|
## commandlinedata Binary:
|
||||||
|
#####################################################################
|
||||||
|
|
||||||
|
add_qt_executable(commandlinedata
|
||||||
|
NO_INSTALL # special case
|
||||||
|
OUTPUT_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR} # special case
|
||||||
|
GUI
|
||||||
|
SOURCES
|
||||||
|
tst_commandlinedata.cpp
|
||||||
|
PUBLIC_LIBRARIES
|
||||||
|
Qt::Test
|
||||||
|
)
|
||||||
|
|
||||||
|
#### Keys ignored in scope 1:.:.:commandlinedata.pro:<TRUE>:
|
||||||
|
# CONFIG = "-debug_and_release_target"
|
||||||
|
|
||||||
|
## Scopes:
|
||||||
|
#####################################################################
|
||||||
|
|
||||||
|
#### Keys ignored in scope 2:.:.:commandlinedata.pro:APPLE_OSX:
|
||||||
|
# CONFIG = "-app_bundle"
|
||||||
|
@ -1 +1,24 @@
|
|||||||
add_qt_test(counting SOURCES tst_counting.cpp)
|
# Generated from counting.pro.
|
||||||
|
|
||||||
|
#####################################################################
|
||||||
|
## counting Binary:
|
||||||
|
#####################################################################
|
||||||
|
|
||||||
|
add_qt_executable(counting
|
||||||
|
NO_INSTALL # special case
|
||||||
|
OUTPUT_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR} # special case
|
||||||
|
GUI
|
||||||
|
SOURCES
|
||||||
|
tst_counting.cpp
|
||||||
|
PUBLIC_LIBRARIES
|
||||||
|
Qt::Test
|
||||||
|
)
|
||||||
|
|
||||||
|
#### Keys ignored in scope 1:.:.:counting.pro:<TRUE>:
|
||||||
|
# CONFIG = "-debug_and_release_target"
|
||||||
|
|
||||||
|
## Scopes:
|
||||||
|
#####################################################################
|
||||||
|
|
||||||
|
#### Keys ignored in scope 2:.:.:counting.pro:APPLE_OSX:
|
||||||
|
# CONFIG = "-app_bundle"
|
||||||
|
@ -1 +1,24 @@
|
|||||||
add_qt_test(crashes SOURCES tst_crashes.cpp)
|
# Generated from crashes.pro.
|
||||||
|
|
||||||
|
#####################################################################
|
||||||
|
## crashes Binary:
|
||||||
|
#####################################################################
|
||||||
|
|
||||||
|
add_qt_executable(crashes
|
||||||
|
NO_INSTALL # special case
|
||||||
|
OUTPUT_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR} # special case
|
||||||
|
GUI
|
||||||
|
SOURCES
|
||||||
|
tst_crashes.cpp
|
||||||
|
PUBLIC_LIBRARIES
|
||||||
|
Qt::Test
|
||||||
|
)
|
||||||
|
|
||||||
|
#### Keys ignored in scope 1:.:.:crashes.pro:<TRUE>:
|
||||||
|
# CONFIG = "-debug_and_release_target"
|
||||||
|
|
||||||
|
## Scopes:
|
||||||
|
#####################################################################
|
||||||
|
|
||||||
|
#### Keys ignored in scope 2:.:.:crashes.pro:APPLE_OSX:
|
||||||
|
# CONFIG = "-app_bundle"
|
||||||
|
@ -1 +1,24 @@
|
|||||||
add_qt_test(datatable SOURCES tst_datatable.cpp)
|
# Generated from datatable.pro.
|
||||||
|
|
||||||
|
#####################################################################
|
||||||
|
## datatable Binary:
|
||||||
|
#####################################################################
|
||||||
|
|
||||||
|
add_qt_executable(datatable
|
||||||
|
NO_INSTALL # special case
|
||||||
|
OUTPUT_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR} # special case
|
||||||
|
GUI
|
||||||
|
SOURCES
|
||||||
|
tst_datatable.cpp
|
||||||
|
PUBLIC_LIBRARIES
|
||||||
|
Qt::Test
|
||||||
|
)
|
||||||
|
|
||||||
|
#### Keys ignored in scope 1:.:.:datatable.pro:<TRUE>:
|
||||||
|
# CONFIG = "-debug_and_release_target"
|
||||||
|
|
||||||
|
## Scopes:
|
||||||
|
#####################################################################
|
||||||
|
|
||||||
|
#### Keys ignored in scope 2:.:.:datatable.pro:APPLE_OSX:
|
||||||
|
# CONFIG = "-app_bundle"
|
||||||
|
@ -1 +1,24 @@
|
|||||||
add_qt_test(datetime SOURCES tst_datetime.cpp)
|
# Generated from datetime.pro.
|
||||||
|
|
||||||
|
#####################################################################
|
||||||
|
## datetime Binary:
|
||||||
|
#####################################################################
|
||||||
|
|
||||||
|
add_qt_executable(datetime
|
||||||
|
NO_INSTALL # special case
|
||||||
|
OUTPUT_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR} # special case
|
||||||
|
GUI
|
||||||
|
SOURCES
|
||||||
|
tst_datetime.cpp
|
||||||
|
PUBLIC_LIBRARIES
|
||||||
|
Qt::Test
|
||||||
|
)
|
||||||
|
|
||||||
|
#### Keys ignored in scope 1:.:.:datetime.pro:<TRUE>:
|
||||||
|
# CONFIG = "-debug_and_release_target"
|
||||||
|
|
||||||
|
## Scopes:
|
||||||
|
#####################################################################
|
||||||
|
|
||||||
|
#### Keys ignored in scope 2:.:.:datetime.pro:APPLE_OSX:
|
||||||
|
# CONFIG = "-app_bundle"
|
||||||
|
@ -1 +1,18 @@
|
|||||||
add_qt_test(tst_deleteLater SOURCES tst_deleteLater.cpp)
|
# Generated from deleteLater.pro.
|
||||||
|
|
||||||
|
#####################################################################
|
||||||
|
## tst_deleteLater Binary:
|
||||||
|
#####################################################################
|
||||||
|
|
||||||
|
add_qt_executable(tst_deleteLater
|
||||||
|
NO_INSTALL # special case
|
||||||
|
OUTPUT_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR} # special case
|
||||||
|
GUI
|
||||||
|
SOURCES
|
||||||
|
tst_deleteLater.cpp
|
||||||
|
PUBLIC_LIBRARIES
|
||||||
|
Qt::Test
|
||||||
|
)
|
||||||
|
|
||||||
|
#### Keys ignored in scope 1:.:.:deleteLater.pro:<TRUE>:
|
||||||
|
# CONFIG = "-app_bundle" "-debug_and_release_target"
|
||||||
|
@ -1 +1,18 @@
|
|||||||
add_qt_test(tst_deleteLater_noApp SOURCES tst_deleteLater_noApp.cpp)
|
# Generated from deleteLater_noApp.pro.
|
||||||
|
|
||||||
|
#####################################################################
|
||||||
|
## tst_deleteLater_noApp Binary:
|
||||||
|
#####################################################################
|
||||||
|
|
||||||
|
add_qt_executable(tst_deleteLater_noApp
|
||||||
|
NO_INSTALL # special case
|
||||||
|
OUTPUT_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR} # special case
|
||||||
|
GUI
|
||||||
|
SOURCES
|
||||||
|
tst_deleteLater_noApp.cpp
|
||||||
|
PUBLIC_LIBRARIES
|
||||||
|
Qt::Test
|
||||||
|
)
|
||||||
|
|
||||||
|
#### Keys ignored in scope 1:.:.:deleteLater_noApp.pro:<TRUE>:
|
||||||
|
# CONFIG = "-app_bundle" "-debug_and_release_target"
|
||||||
|
@ -1 +1,24 @@
|
|||||||
add_qt_test(differentexec SOURCES tst_differentexec.cpp)
|
# Generated from differentexec.pro.
|
||||||
|
|
||||||
|
#####################################################################
|
||||||
|
## differentexec Binary:
|
||||||
|
#####################################################################
|
||||||
|
|
||||||
|
add_qt_executable(differentexec
|
||||||
|
NO_INSTALL # special case
|
||||||
|
OUTPUT_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR} # special case
|
||||||
|
GUI
|
||||||
|
SOURCES
|
||||||
|
tst_differentexec.cpp
|
||||||
|
PUBLIC_LIBRARIES
|
||||||
|
Qt::Test
|
||||||
|
)
|
||||||
|
|
||||||
|
#### Keys ignored in scope 1:.:.:differentexec.pro:<TRUE>:
|
||||||
|
# CONFIG = "-debug_and_release_target"
|
||||||
|
|
||||||
|
## Scopes:
|
||||||
|
#####################################################################
|
||||||
|
|
||||||
|
#### Keys ignored in scope 2:.:.:differentexec.pro:APPLE_OSX:
|
||||||
|
# CONFIG = "-app_bundle"
|
||||||
|
24
tests/auto/testlib/selftests/exceptionthrow/CMakeLists.txt
Normal file
24
tests/auto/testlib/selftests/exceptionthrow/CMakeLists.txt
Normal file
@ -0,0 +1,24 @@
|
|||||||
|
# Generated from exceptionthrow.pro.
|
||||||
|
|
||||||
|
#####################################################################
|
||||||
|
## exceptionthrow Binary:
|
||||||
|
#####################################################################
|
||||||
|
|
||||||
|
add_qt_executable(exceptionthrow
|
||||||
|
NO_INSTALL # special case
|
||||||
|
OUTPUT_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR} # special case
|
||||||
|
GUI
|
||||||
|
SOURCES
|
||||||
|
tst_exceptionthrow.cpp
|
||||||
|
PUBLIC_LIBRARIES
|
||||||
|
Qt::Test
|
||||||
|
)
|
||||||
|
|
||||||
|
#### Keys ignored in scope 1:.:.:exceptionthrow.pro:<TRUE>:
|
||||||
|
# CONFIG = "-debug_and_release_target" "exceptions"
|
||||||
|
|
||||||
|
## Scopes:
|
||||||
|
#####################################################################
|
||||||
|
|
||||||
|
#### Keys ignored in scope 2:.:.:exceptionthrow.pro:APPLE_OSX:
|
||||||
|
# CONFIG = "-app_bundle"
|
@ -1 +1,24 @@
|
|||||||
add_qt_test(expectfail SOURCES tst_expectfail.cpp)
|
# Generated from expectfail.pro.
|
||||||
|
|
||||||
|
#####################################################################
|
||||||
|
## expectfail Binary:
|
||||||
|
#####################################################################
|
||||||
|
|
||||||
|
add_qt_executable(expectfail
|
||||||
|
NO_INSTALL # special case
|
||||||
|
OUTPUT_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR} # special case
|
||||||
|
GUI
|
||||||
|
SOURCES
|
||||||
|
tst_expectfail.cpp
|
||||||
|
PUBLIC_LIBRARIES
|
||||||
|
Qt::Test
|
||||||
|
)
|
||||||
|
|
||||||
|
#### Keys ignored in scope 1:.:.:expectfail.pro:<TRUE>:
|
||||||
|
# CONFIG = "-debug_and_release_target"
|
||||||
|
|
||||||
|
## Scopes:
|
||||||
|
#####################################################################
|
||||||
|
|
||||||
|
#### Keys ignored in scope 2:.:.:expectfail.pro:APPLE_OSX:
|
||||||
|
# CONFIG = "-app_bundle"
|
||||||
|
@ -1 +1,24 @@
|
|||||||
add_qt_test(failcleanup SOURCES tst_failcleanup.cpp)
|
# Generated from failcleanup.pro.
|
||||||
|
|
||||||
|
#####################################################################
|
||||||
|
## failcleanup Binary:
|
||||||
|
#####################################################################
|
||||||
|
|
||||||
|
add_qt_executable(failcleanup
|
||||||
|
NO_INSTALL # special case
|
||||||
|
OUTPUT_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR} # special case
|
||||||
|
GUI
|
||||||
|
SOURCES
|
||||||
|
tst_failcleanup.cpp
|
||||||
|
PUBLIC_LIBRARIES
|
||||||
|
Qt::Test
|
||||||
|
)
|
||||||
|
|
||||||
|
#### Keys ignored in scope 1:.:.:failcleanup.pro:<TRUE>:
|
||||||
|
# CONFIG = "-debug_and_release_target"
|
||||||
|
|
||||||
|
## Scopes:
|
||||||
|
#####################################################################
|
||||||
|
|
||||||
|
#### Keys ignored in scope 2:.:.:failcleanup.pro:APPLE_OSX:
|
||||||
|
# CONFIG = "-app_bundle"
|
||||||
|
24
tests/auto/testlib/selftests/faildatatype/CMakeLists.txt
Normal file
24
tests/auto/testlib/selftests/faildatatype/CMakeLists.txt
Normal file
@ -0,0 +1,24 @@
|
|||||||
|
# Generated from faildatatype.pro.
|
||||||
|
|
||||||
|
#####################################################################
|
||||||
|
## faildatatype Binary:
|
||||||
|
#####################################################################
|
||||||
|
|
||||||
|
add_qt_executable(faildatatype
|
||||||
|
NO_INSTALL # special case
|
||||||
|
OUTPUT_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR} # special case
|
||||||
|
GUI
|
||||||
|
SOURCES
|
||||||
|
tst_faildatatype.cpp
|
||||||
|
PUBLIC_LIBRARIES
|
||||||
|
Qt::Test
|
||||||
|
)
|
||||||
|
|
||||||
|
#### Keys ignored in scope 1:.:.:faildatatype.pro:<TRUE>:
|
||||||
|
# CONFIG = "-debug_and_release_target"
|
||||||
|
|
||||||
|
## Scopes:
|
||||||
|
#####################################################################
|
||||||
|
|
||||||
|
#### Keys ignored in scope 2:.:.:faildatatype.pro:APPLE:
|
||||||
|
# CONFIG = "-app_bundle"
|
24
tests/auto/testlib/selftests/failfetchtype/CMakeLists.txt
Normal file
24
tests/auto/testlib/selftests/failfetchtype/CMakeLists.txt
Normal file
@ -0,0 +1,24 @@
|
|||||||
|
# Generated from failfetchtype.pro.
|
||||||
|
|
||||||
|
#####################################################################
|
||||||
|
## failfetchtype Binary:
|
||||||
|
#####################################################################
|
||||||
|
|
||||||
|
add_qt_executable(failfetchtype
|
||||||
|
NO_INSTALL # special case
|
||||||
|
OUTPUT_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR} # special case
|
||||||
|
GUI
|
||||||
|
SOURCES
|
||||||
|
tst_failfetchtype.cpp
|
||||||
|
PUBLIC_LIBRARIES
|
||||||
|
Qt::Test
|
||||||
|
)
|
||||||
|
|
||||||
|
#### Keys ignored in scope 1:.:.:failfetchtype.pro:<TRUE>:
|
||||||
|
# CONFIG = "-debug_and_release_target"
|
||||||
|
|
||||||
|
## Scopes:
|
||||||
|
#####################################################################
|
||||||
|
|
||||||
|
#### Keys ignored in scope 2:.:.:failfetchtype.pro:APPLE:
|
||||||
|
# CONFIG = "-app_bundle"
|
@ -1 +1,24 @@
|
|||||||
add_qt_test(failinit SOURCES tst_failinit.cpp)
|
# Generated from failinit.pro.
|
||||||
|
|
||||||
|
#####################################################################
|
||||||
|
## failinit Binary:
|
||||||
|
#####################################################################
|
||||||
|
|
||||||
|
add_qt_executable(failinit
|
||||||
|
NO_INSTALL # special case
|
||||||
|
OUTPUT_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR} # special case
|
||||||
|
GUI
|
||||||
|
SOURCES
|
||||||
|
tst_failinit.cpp
|
||||||
|
PUBLIC_LIBRARIES
|
||||||
|
Qt::Test
|
||||||
|
)
|
||||||
|
|
||||||
|
#### Keys ignored in scope 1:.:.:failinit.pro:<TRUE>:
|
||||||
|
# CONFIG = "-debug_and_release_target"
|
||||||
|
|
||||||
|
## Scopes:
|
||||||
|
#####################################################################
|
||||||
|
|
||||||
|
#### Keys ignored in scope 2:.:.:failinit.pro:APPLE_OSX:
|
||||||
|
# CONFIG = "-app_bundle"
|
||||||
|
@ -1 +1,24 @@
|
|||||||
add_qt_test(failinitdata SOURCES tst_failinitdata.cpp)
|
# Generated from failinitdata.pro.
|
||||||
|
|
||||||
|
#####################################################################
|
||||||
|
## failinitdata Binary:
|
||||||
|
#####################################################################
|
||||||
|
|
||||||
|
add_qt_executable(failinitdata
|
||||||
|
NO_INSTALL # special case
|
||||||
|
OUTPUT_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR} # special case
|
||||||
|
GUI
|
||||||
|
SOURCES
|
||||||
|
tst_failinitdata.cpp
|
||||||
|
PUBLIC_LIBRARIES
|
||||||
|
Qt::Test
|
||||||
|
)
|
||||||
|
|
||||||
|
#### Keys ignored in scope 1:.:.:failinitdata.pro:<TRUE>:
|
||||||
|
# CONFIG = "-debug_and_release_target"
|
||||||
|
|
||||||
|
## Scopes:
|
||||||
|
#####################################################################
|
||||||
|
|
||||||
|
#### Keys ignored in scope 2:.:.:failinitdata.pro:APPLE_OSX:
|
||||||
|
# CONFIG = "-app_bundle"
|
||||||
|
@ -1 +1,24 @@
|
|||||||
add_qt_test(fetchbogus SOURCES tst_fetchbogus.cpp)
|
# Generated from fetchbogus.pro.
|
||||||
|
|
||||||
|
#####################################################################
|
||||||
|
## fetchbogus Binary:
|
||||||
|
#####################################################################
|
||||||
|
|
||||||
|
add_qt_executable(fetchbogus
|
||||||
|
NO_INSTALL # special case
|
||||||
|
OUTPUT_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR} # special case
|
||||||
|
GUI
|
||||||
|
SOURCES
|
||||||
|
tst_fetchbogus.cpp
|
||||||
|
PUBLIC_LIBRARIES
|
||||||
|
Qt::Test
|
||||||
|
)
|
||||||
|
|
||||||
|
#### Keys ignored in scope 1:.:.:fetchbogus.pro:<TRUE>:
|
||||||
|
# CONFIG = "-debug_and_release_target"
|
||||||
|
|
||||||
|
## Scopes:
|
||||||
|
#####################################################################
|
||||||
|
|
||||||
|
#### Keys ignored in scope 2:.:.:fetchbogus.pro:APPLE_OSX:
|
||||||
|
# CONFIG = "-app_bundle"
|
||||||
|
29
tests/auto/testlib/selftests/findtestdata/CMakeLists.txt
Normal file
29
tests/auto/testlib/selftests/findtestdata/CMakeLists.txt
Normal file
@ -0,0 +1,29 @@
|
|||||||
|
# Generated from findtestdata.pro.
|
||||||
|
|
||||||
|
#####################################################################
|
||||||
|
## findtestdata Binary:
|
||||||
|
#####################################################################
|
||||||
|
|
||||||
|
add_qt_executable(findtestdata
|
||||||
|
NO_INSTALL # special case
|
||||||
|
OUTPUT_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR} # special case
|
||||||
|
GUI
|
||||||
|
SOURCES
|
||||||
|
findtestdata.cpp
|
||||||
|
PUBLIC_LIBRARIES
|
||||||
|
Qt::Test
|
||||||
|
)
|
||||||
|
|
||||||
|
# Resources:
|
||||||
|
add_qt_resource(findtestdata "findtestdata" PREFIX "/qt/etc/" FILES
|
||||||
|
qt.conf)
|
||||||
|
|
||||||
|
|
||||||
|
#### Keys ignored in scope 1:.:.:findtestdata.pro:<TRUE>:
|
||||||
|
# CONFIG = "-debug_and_release_target"
|
||||||
|
|
||||||
|
## Scopes:
|
||||||
|
#####################################################################
|
||||||
|
|
||||||
|
#### Keys ignored in scope 2:.:.:findtestdata.pro:APPLE_OSX:
|
||||||
|
# CONFIG = "-app_bundle"
|
@ -1 +1,24 @@
|
|||||||
add_qt_test(float SOURCES tst_float.cpp)
|
# Generated from float.pro.
|
||||||
|
|
||||||
|
#####################################################################
|
||||||
|
## float Binary:
|
||||||
|
#####################################################################
|
||||||
|
|
||||||
|
add_qt_executable(float
|
||||||
|
NO_INSTALL # special case
|
||||||
|
OUTPUT_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR} # special case
|
||||||
|
GUI
|
||||||
|
SOURCES
|
||||||
|
tst_float.cpp
|
||||||
|
PUBLIC_LIBRARIES
|
||||||
|
Qt::Test
|
||||||
|
)
|
||||||
|
|
||||||
|
#### Keys ignored in scope 1:.:.:float.pro:<TRUE>:
|
||||||
|
# CONFIG = "-debug_and_release_target"
|
||||||
|
|
||||||
|
## Scopes:
|
||||||
|
#####################################################################
|
||||||
|
|
||||||
|
#### Keys ignored in scope 2:.:.:float.pro:APPLE_OSX:
|
||||||
|
# CONFIG = "-app_bundle"
|
||||||
|
@ -1 +1,24 @@
|
|||||||
add_qt_test(globaldata SOURCES tst_globaldata.cpp)
|
# Generated from globaldata.pro.
|
||||||
|
|
||||||
|
#####################################################################
|
||||||
|
## globaldata Binary:
|
||||||
|
#####################################################################
|
||||||
|
|
||||||
|
add_qt_executable(globaldata
|
||||||
|
NO_INSTALL # special case
|
||||||
|
OUTPUT_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR} # special case
|
||||||
|
GUI
|
||||||
|
SOURCES
|
||||||
|
tst_globaldata.cpp
|
||||||
|
PUBLIC_LIBRARIES
|
||||||
|
Qt::Test
|
||||||
|
)
|
||||||
|
|
||||||
|
#### Keys ignored in scope 1:.:.:globaldata.pro:<TRUE>:
|
||||||
|
# CONFIG = "-debug_and_release_target"
|
||||||
|
|
||||||
|
## Scopes:
|
||||||
|
#####################################################################
|
||||||
|
|
||||||
|
#### Keys ignored in scope 2:.:.:globaldata.pro:APPLE_OSX:
|
||||||
|
# CONFIG = "-app_bundle"
|
||||||
|
28
tests/auto/testlib/selftests/keyboard/CMakeLists.txt
Normal file
28
tests/auto/testlib/selftests/keyboard/CMakeLists.txt
Normal file
@ -0,0 +1,28 @@
|
|||||||
|
# Generated from keyboard.pro.
|
||||||
|
|
||||||
|
#####################################################################
|
||||||
|
## keyboard Binary:
|
||||||
|
#####################################################################
|
||||||
|
|
||||||
|
add_qt_executable(keyboard
|
||||||
|
NO_INSTALL # special case
|
||||||
|
OUTPUT_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR} # special case
|
||||||
|
GUI
|
||||||
|
SOURCES
|
||||||
|
tst_keyboard.cpp
|
||||||
|
LIBRARIES
|
||||||
|
Qt::GuiPrivate
|
||||||
|
Qt::TestPrivate
|
||||||
|
PUBLIC_LIBRARIES
|
||||||
|
Qt::Gui
|
||||||
|
Qt::Test
|
||||||
|
)
|
||||||
|
|
||||||
|
#### Keys ignored in scope 1:.:.:keyboard.pro:<TRUE>:
|
||||||
|
# CONFIG = "-debug_and_release_target"
|
||||||
|
|
||||||
|
## Scopes:
|
||||||
|
#####################################################################
|
||||||
|
|
||||||
|
#### Keys ignored in scope 2:.:.:keyboard.pro:APPLE_OSX:
|
||||||
|
# CONFIG = "-app_bundle"
|
@ -1 +1,24 @@
|
|||||||
add_qt_test(longstring SOURCES tst_longstring.cpp)
|
# Generated from longstring.pro.
|
||||||
|
|
||||||
|
#####################################################################
|
||||||
|
## longstring Binary:
|
||||||
|
#####################################################################
|
||||||
|
|
||||||
|
add_qt_executable(longstring
|
||||||
|
NO_INSTALL # special case
|
||||||
|
OUTPUT_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR} # special case
|
||||||
|
GUI
|
||||||
|
SOURCES
|
||||||
|
tst_longstring.cpp
|
||||||
|
PUBLIC_LIBRARIES
|
||||||
|
Qt::Test
|
||||||
|
)
|
||||||
|
|
||||||
|
#### Keys ignored in scope 1:.:.:longstring.pro:<TRUE>:
|
||||||
|
# CONFIG = "-debug_and_release_target"
|
||||||
|
|
||||||
|
## Scopes:
|
||||||
|
#####################################################################
|
||||||
|
|
||||||
|
#### Keys ignored in scope 2:.:.:longstring.pro:APPLE_OSX:
|
||||||
|
# CONFIG = "-app_bundle"
|
||||||
|
@ -1 +1,24 @@
|
|||||||
add_qt_test(maxwarnings SOURCES maxwarnings.cpp)
|
# Generated from maxwarnings.pro.
|
||||||
|
|
||||||
|
#####################################################################
|
||||||
|
## maxwarnings Binary:
|
||||||
|
#####################################################################
|
||||||
|
|
||||||
|
add_qt_executable(maxwarnings
|
||||||
|
NO_INSTALL # special case
|
||||||
|
OUTPUT_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR} # special case
|
||||||
|
GUI
|
||||||
|
SOURCES
|
||||||
|
maxwarnings.cpp
|
||||||
|
PUBLIC_LIBRARIES
|
||||||
|
Qt::Test
|
||||||
|
)
|
||||||
|
|
||||||
|
#### Keys ignored in scope 1:.:.:maxwarnings.pro:<TRUE>:
|
||||||
|
# CONFIG = "-debug_and_release_target"
|
||||||
|
|
||||||
|
## Scopes:
|
||||||
|
#####################################################################
|
||||||
|
|
||||||
|
#### Keys ignored in scope 2:.:.:maxwarnings.pro:APPLE_OSX:
|
||||||
|
# CONFIG = "-app_bundle"
|
||||||
|
28
tests/auto/testlib/selftests/mouse/CMakeLists.txt
Normal file
28
tests/auto/testlib/selftests/mouse/CMakeLists.txt
Normal file
@ -0,0 +1,28 @@
|
|||||||
|
# Generated from mouse.pro.
|
||||||
|
|
||||||
|
#####################################################################
|
||||||
|
## mouse Binary:
|
||||||
|
#####################################################################
|
||||||
|
|
||||||
|
add_qt_executable(mouse
|
||||||
|
NO_INSTALL # special case
|
||||||
|
OUTPUT_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR} # special case
|
||||||
|
GUI
|
||||||
|
SOURCES
|
||||||
|
tst_mouse.cpp
|
||||||
|
LIBRARIES
|
||||||
|
Qt::GuiPrivate
|
||||||
|
Qt::TestPrivate
|
||||||
|
PUBLIC_LIBRARIES
|
||||||
|
Qt::Gui
|
||||||
|
Qt::Test
|
||||||
|
)
|
||||||
|
|
||||||
|
#### Keys ignored in scope 1:.:.:mouse.pro:<TRUE>:
|
||||||
|
# CONFIG = "-debug_and_release_target"
|
||||||
|
|
||||||
|
## Scopes:
|
||||||
|
#####################################################################
|
||||||
|
|
||||||
|
#### Keys ignored in scope 2:.:.:mouse.pro:APPLE_OSX:
|
||||||
|
# CONFIG = "-app_bundle"
|
@ -1 +1,24 @@
|
|||||||
add_qt_test(multiexec SOURCES tst_multiexec.cpp)
|
# Generated from multiexec.pro.
|
||||||
|
|
||||||
|
#####################################################################
|
||||||
|
## multiexec Binary:
|
||||||
|
#####################################################################
|
||||||
|
|
||||||
|
add_qt_executable(multiexec
|
||||||
|
NO_INSTALL # special case
|
||||||
|
OUTPUT_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR} # special case
|
||||||
|
GUI
|
||||||
|
SOURCES
|
||||||
|
tst_multiexec.cpp
|
||||||
|
PUBLIC_LIBRARIES
|
||||||
|
Qt::Test
|
||||||
|
)
|
||||||
|
|
||||||
|
#### Keys ignored in scope 1:.:.:multiexec.pro:<TRUE>:
|
||||||
|
# CONFIG = "-debug_and_release_target"
|
||||||
|
|
||||||
|
## Scopes:
|
||||||
|
#####################################################################
|
||||||
|
|
||||||
|
#### Keys ignored in scope 2:.:.:multiexec.pro:APPLE_OSX:
|
||||||
|
# CONFIG = "-app_bundle"
|
||||||
|
@ -1 +1,18 @@
|
|||||||
add_qt_test(pairdiagnostics SOURCES tst_pairdiagnostics.cpp)
|
# Generated from pairdiagnostics.pro.
|
||||||
|
|
||||||
|
#####################################################################
|
||||||
|
## pairdiagnostics Binary:
|
||||||
|
#####################################################################
|
||||||
|
|
||||||
|
add_qt_executable(pairdiagnostics
|
||||||
|
NO_INSTALL # special case
|
||||||
|
OUTPUT_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR} # special case
|
||||||
|
GUI
|
||||||
|
SOURCES
|
||||||
|
tst_pairdiagnostics.cpp
|
||||||
|
PUBLIC_LIBRARIES
|
||||||
|
Qt::Test
|
||||||
|
)
|
||||||
|
|
||||||
|
#### Keys ignored in scope 1:.:.:pairdiagnostics.pro:<TRUE>:
|
||||||
|
# CONFIG = "-app_bundle" "-debug_and_release_target"
|
||||||
|
@ -1 +1,24 @@
|
|||||||
add_qt_test(printdatatags SOURCES tst_printdatatags.cpp)
|
# Generated from printdatatags.pro.
|
||||||
|
|
||||||
|
#####################################################################
|
||||||
|
## printdatatags Binary:
|
||||||
|
#####################################################################
|
||||||
|
|
||||||
|
add_qt_executable(printdatatags
|
||||||
|
NO_INSTALL # special case
|
||||||
|
OUTPUT_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR} # special case
|
||||||
|
GUI
|
||||||
|
SOURCES
|
||||||
|
tst_printdatatags.cpp
|
||||||
|
PUBLIC_LIBRARIES
|
||||||
|
Qt::Test
|
||||||
|
)
|
||||||
|
|
||||||
|
#### Keys ignored in scope 1:.:.:printdatatags.pro:<TRUE>:
|
||||||
|
# CONFIG = "-debug_and_release_target"
|
||||||
|
|
||||||
|
## Scopes:
|
||||||
|
#####################################################################
|
||||||
|
|
||||||
|
#### Keys ignored in scope 2:.:.:printdatatags.pro:APPLE_OSX:
|
||||||
|
# CONFIG = "-app_bundle"
|
||||||
|
@ -1 +1,24 @@
|
|||||||
add_qt_test(printdatatagswithglobaltags SOURCES tst_printdatatagswithglobaltags.cpp)
|
# Generated from printdatatagswithglobaltags.pro.
|
||||||
|
|
||||||
|
#####################################################################
|
||||||
|
## printdatatagswithglobaltags Binary:
|
||||||
|
#####################################################################
|
||||||
|
|
||||||
|
add_qt_executable(printdatatagswithglobaltags
|
||||||
|
NO_INSTALL # special case
|
||||||
|
OUTPUT_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR} # special case
|
||||||
|
GUI
|
||||||
|
SOURCES
|
||||||
|
tst_printdatatagswithglobaltags.cpp
|
||||||
|
PUBLIC_LIBRARIES
|
||||||
|
Qt::Test
|
||||||
|
)
|
||||||
|
|
||||||
|
#### Keys ignored in scope 1:.:.:printdatatagswithglobaltags.pro:<TRUE>:
|
||||||
|
# CONFIG = "-debug_and_release_target"
|
||||||
|
|
||||||
|
## Scopes:
|
||||||
|
#####################################################################
|
||||||
|
|
||||||
|
#### Keys ignored in scope 2:.:.:printdatatagswithglobaltags.pro:APPLE_OSX:
|
||||||
|
# CONFIG = "-app_bundle"
|
||||||
|
@ -1 +1,24 @@
|
|||||||
add_qt_test(qexecstringlist SOURCES tst_qexecstringlist.cpp)
|
# Generated from qexecstringlist.pro.
|
||||||
|
|
||||||
|
#####################################################################
|
||||||
|
## qexecstringlist Binary:
|
||||||
|
#####################################################################
|
||||||
|
|
||||||
|
add_qt_executable(qexecstringlist
|
||||||
|
NO_INSTALL # special case
|
||||||
|
OUTPUT_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR} # special case
|
||||||
|
GUI
|
||||||
|
SOURCES
|
||||||
|
tst_qexecstringlist.cpp
|
||||||
|
PUBLIC_LIBRARIES
|
||||||
|
Qt::Test
|
||||||
|
)
|
||||||
|
|
||||||
|
#### Keys ignored in scope 1:.:.:qexecstringlist.pro:<TRUE>:
|
||||||
|
# CONFIG = "-debug_and_release_target"
|
||||||
|
|
||||||
|
## Scopes:
|
||||||
|
#####################################################################
|
||||||
|
|
||||||
|
#### Keys ignored in scope 2:.:.:qexecstringlist.pro:APPLE_OSX:
|
||||||
|
# CONFIG = "-app_bundle"
|
||||||
|
26
tests/auto/testlib/selftests/signaldumper/CMakeLists.txt
Normal file
26
tests/auto/testlib/selftests/signaldumper/CMakeLists.txt
Normal file
@ -0,0 +1,26 @@
|
|||||||
|
# Generated from signaldumper.pro.
|
||||||
|
|
||||||
|
#####################################################################
|
||||||
|
## signaldumper Binary:
|
||||||
|
#####################################################################
|
||||||
|
|
||||||
|
add_qt_executable(signaldumper
|
||||||
|
NO_INSTALL # special case
|
||||||
|
OUTPUT_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR} # special case
|
||||||
|
GUI
|
||||||
|
SOURCES
|
||||||
|
tst_signaldumper.cpp
|
||||||
|
LIBRARIES
|
||||||
|
Qt::TestPrivate
|
||||||
|
PUBLIC_LIBRARIES
|
||||||
|
Qt::Test
|
||||||
|
)
|
||||||
|
|
||||||
|
#### Keys ignored in scope 1:.:.:signaldumper.pro:<TRUE>:
|
||||||
|
# CONFIG = "-debug_and_release_target"
|
||||||
|
|
||||||
|
## Scopes:
|
||||||
|
#####################################################################
|
||||||
|
|
||||||
|
#### Keys ignored in scope 2:.:.:signaldumper.pro:APPLE_OSX:
|
||||||
|
# CONFIG = "-app_bundle"
|
26
tests/auto/testlib/selftests/silent/CMakeLists.txt
Normal file
26
tests/auto/testlib/selftests/silent/CMakeLists.txt
Normal file
@ -0,0 +1,26 @@
|
|||||||
|
# Generated from silent.pro.
|
||||||
|
|
||||||
|
#####################################################################
|
||||||
|
## silent Binary:
|
||||||
|
#####################################################################
|
||||||
|
|
||||||
|
add_qt_executable(silent
|
||||||
|
NO_INSTALL # special case
|
||||||
|
OUTPUT_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR} # special case
|
||||||
|
GUI
|
||||||
|
SOURCES
|
||||||
|
tst_silent.cpp
|
||||||
|
LIBRARIES
|
||||||
|
Qt::TestPrivate
|
||||||
|
PUBLIC_LIBRARIES
|
||||||
|
Qt::Test
|
||||||
|
)
|
||||||
|
|
||||||
|
#### Keys ignored in scope 1:.:.:silent.pro:<TRUE>:
|
||||||
|
# CONFIG = "-debug_and_release_target"
|
||||||
|
|
||||||
|
## Scopes:
|
||||||
|
#####################################################################
|
||||||
|
|
||||||
|
#### Keys ignored in scope 2:.:.:silent.pro:APPLE_OSX:
|
||||||
|
# CONFIG = "-app_bundle"
|
@ -1 +1,24 @@
|
|||||||
add_qt_test(singleskip SOURCES tst_singleskip.cpp)
|
# Generated from singleskip.pro.
|
||||||
|
|
||||||
|
#####################################################################
|
||||||
|
## singleskip Binary:
|
||||||
|
#####################################################################
|
||||||
|
|
||||||
|
add_qt_executable(singleskip
|
||||||
|
NO_INSTALL # special case
|
||||||
|
OUTPUT_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR} # special case
|
||||||
|
GUI
|
||||||
|
SOURCES
|
||||||
|
tst_singleskip.cpp
|
||||||
|
PUBLIC_LIBRARIES
|
||||||
|
Qt::Test
|
||||||
|
)
|
||||||
|
|
||||||
|
#### Keys ignored in scope 1:.:.:singleskip.pro:<TRUE>:
|
||||||
|
# CONFIG = "-debug_and_release_target"
|
||||||
|
|
||||||
|
## Scopes:
|
||||||
|
#####################################################################
|
||||||
|
|
||||||
|
#### Keys ignored in scope 2:.:.:singleskip.pro:APPLE_OSX:
|
||||||
|
# CONFIG = "-app_bundle"
|
||||||
|
@ -1 +1,24 @@
|
|||||||
add_qt_test(skip SOURCES tst_skip.cpp)
|
# Generated from skip.pro.
|
||||||
|
|
||||||
|
#####################################################################
|
||||||
|
## skip Binary:
|
||||||
|
#####################################################################
|
||||||
|
|
||||||
|
add_qt_executable(skip
|
||||||
|
NO_INSTALL # special case
|
||||||
|
OUTPUT_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR} # special case
|
||||||
|
GUI
|
||||||
|
SOURCES
|
||||||
|
tst_skip.cpp
|
||||||
|
PUBLIC_LIBRARIES
|
||||||
|
Qt::Test
|
||||||
|
)
|
||||||
|
|
||||||
|
#### Keys ignored in scope 1:.:.:skip.pro:<TRUE>:
|
||||||
|
# CONFIG = "-debug_and_release_target"
|
||||||
|
|
||||||
|
## Scopes:
|
||||||
|
#####################################################################
|
||||||
|
|
||||||
|
#### Keys ignored in scope 2:.:.:skip.pro:APPLE_OSX:
|
||||||
|
# CONFIG = "-app_bundle"
|
||||||
|
@ -1 +1,24 @@
|
|||||||
add_qt_test(skipcleanup SOURCES tst_skipcleanup.cpp)
|
# Generated from skipcleanup.pro.
|
||||||
|
|
||||||
|
#####################################################################
|
||||||
|
## skipcleanup Binary:
|
||||||
|
#####################################################################
|
||||||
|
|
||||||
|
add_qt_executable(skipcleanup
|
||||||
|
NO_INSTALL # special case
|
||||||
|
OUTPUT_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR} # special case
|
||||||
|
GUI
|
||||||
|
SOURCES
|
||||||
|
tst_skipcleanup.cpp
|
||||||
|
PUBLIC_LIBRARIES
|
||||||
|
Qt::Test
|
||||||
|
)
|
||||||
|
|
||||||
|
#### Keys ignored in scope 1:.:.:skipcleanup.pro:<TRUE>:
|
||||||
|
# CONFIG = "-debug_and_release_target"
|
||||||
|
|
||||||
|
## Scopes:
|
||||||
|
#####################################################################
|
||||||
|
|
||||||
|
#### Keys ignored in scope 2:.:.:skipcleanup.pro:APPLE_OSX:
|
||||||
|
# CONFIG = "-app_bundle"
|
||||||
|
@ -1 +1,24 @@
|
|||||||
add_qt_test(skipinit SOURCES tst_skipinit.cpp)
|
# Generated from skipinit.pro.
|
||||||
|
|
||||||
|
#####################################################################
|
||||||
|
## skipinit Binary:
|
||||||
|
#####################################################################
|
||||||
|
|
||||||
|
add_qt_executable(skipinit
|
||||||
|
NO_INSTALL # special case
|
||||||
|
OUTPUT_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR} # special case
|
||||||
|
GUI
|
||||||
|
SOURCES
|
||||||
|
tst_skipinit.cpp
|
||||||
|
PUBLIC_LIBRARIES
|
||||||
|
Qt::Test
|
||||||
|
)
|
||||||
|
|
||||||
|
#### Keys ignored in scope 1:.:.:skipinit.pro:<TRUE>:
|
||||||
|
# CONFIG = "-debug_and_release_target"
|
||||||
|
|
||||||
|
## Scopes:
|
||||||
|
#####################################################################
|
||||||
|
|
||||||
|
#### Keys ignored in scope 2:.:.:skipinit.pro:APPLE_OSX:
|
||||||
|
# CONFIG = "-app_bundle"
|
||||||
|
@ -1 +1,24 @@
|
|||||||
add_qt_test(skipinitdata SOURCES tst_skipinitdata.cpp)
|
# Generated from skipinitdata.pro.
|
||||||
|
|
||||||
|
#####################################################################
|
||||||
|
## skipinitdata Binary:
|
||||||
|
#####################################################################
|
||||||
|
|
||||||
|
add_qt_executable(skipinitdata
|
||||||
|
NO_INSTALL # special case
|
||||||
|
OUTPUT_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR} # special case
|
||||||
|
GUI
|
||||||
|
SOURCES
|
||||||
|
tst_skipinitdata.cpp
|
||||||
|
PUBLIC_LIBRARIES
|
||||||
|
Qt::Test
|
||||||
|
)
|
||||||
|
|
||||||
|
#### Keys ignored in scope 1:.:.:skipinitdata.pro:<TRUE>:
|
||||||
|
# CONFIG = "-debug_and_release_target"
|
||||||
|
|
||||||
|
## Scopes:
|
||||||
|
#####################################################################
|
||||||
|
|
||||||
|
#### Keys ignored in scope 2:.:.:skipinitdata.pro:APPLE_OSX:
|
||||||
|
# CONFIG = "-app_bundle"
|
||||||
|
@ -1 +1,24 @@
|
|||||||
add_qt_test(sleep SOURCES tst_sleep.cpp)
|
# Generated from sleep.pro.
|
||||||
|
|
||||||
|
#####################################################################
|
||||||
|
## sleep Binary:
|
||||||
|
#####################################################################
|
||||||
|
|
||||||
|
add_qt_executable(sleep
|
||||||
|
NO_INSTALL # special case
|
||||||
|
OUTPUT_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR} # special case
|
||||||
|
GUI
|
||||||
|
SOURCES
|
||||||
|
tst_sleep.cpp
|
||||||
|
PUBLIC_LIBRARIES
|
||||||
|
Qt::Test
|
||||||
|
)
|
||||||
|
|
||||||
|
#### Keys ignored in scope 1:.:.:sleep.pro:<TRUE>:
|
||||||
|
# CONFIG = "-debug_and_release_target"
|
||||||
|
|
||||||
|
## Scopes:
|
||||||
|
#####################################################################
|
||||||
|
|
||||||
|
#### Keys ignored in scope 2:.:.:sleep.pro:APPLE_OSX:
|
||||||
|
# CONFIG = "-app_bundle"
|
||||||
|
@ -1 +1,24 @@
|
|||||||
add_qt_test(strcmp SOURCES tst_strcmp.cpp)
|
# Generated from strcmp.pro.
|
||||||
|
|
||||||
|
#####################################################################
|
||||||
|
## strcmp Binary:
|
||||||
|
#####################################################################
|
||||||
|
|
||||||
|
add_qt_executable(strcmp
|
||||||
|
NO_INSTALL # special case
|
||||||
|
OUTPUT_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR} # special case
|
||||||
|
GUI
|
||||||
|
SOURCES
|
||||||
|
tst_strcmp.cpp
|
||||||
|
PUBLIC_LIBRARIES
|
||||||
|
Qt::Test
|
||||||
|
)
|
||||||
|
|
||||||
|
#### Keys ignored in scope 1:.:.:strcmp.pro:<TRUE>:
|
||||||
|
# CONFIG = "-debug_and_release_target"
|
||||||
|
|
||||||
|
## Scopes:
|
||||||
|
#####################################################################
|
||||||
|
|
||||||
|
#### Keys ignored in scope 2:.:.:strcmp.pro:APPLE_OSX:
|
||||||
|
# CONFIG = "-app_bundle"
|
||||||
|
@ -1 +1,24 @@
|
|||||||
add_qt_test(subtest SOURCES tst_subtest.cpp)
|
# Generated from subtest.pro.
|
||||||
|
|
||||||
|
#####################################################################
|
||||||
|
## subtest Binary:
|
||||||
|
#####################################################################
|
||||||
|
|
||||||
|
add_qt_executable(subtest
|
||||||
|
NO_INSTALL # special case
|
||||||
|
OUTPUT_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR} # special case
|
||||||
|
GUI
|
||||||
|
SOURCES
|
||||||
|
tst_subtest.cpp
|
||||||
|
PUBLIC_LIBRARIES
|
||||||
|
Qt::Test
|
||||||
|
)
|
||||||
|
|
||||||
|
#### Keys ignored in scope 1:.:.:subtest.pro:<TRUE>:
|
||||||
|
# CONFIG = "-debug_and_release_target"
|
||||||
|
|
||||||
|
## Scopes:
|
||||||
|
#####################################################################
|
||||||
|
|
||||||
|
#### Keys ignored in scope 2:.:.:subtest.pro:APPLE_OSX:
|
||||||
|
# CONFIG = "-app_bundle"
|
||||||
|
24
tests/auto/testlib/selftests/testlib/CMakeLists.txt
Normal file
24
tests/auto/testlib/selftests/testlib/CMakeLists.txt
Normal file
@ -0,0 +1,24 @@
|
|||||||
|
# Generated from testlib.pro.
|
||||||
|
|
||||||
|
#####################################################################
|
||||||
|
## testlib Binary:
|
||||||
|
#####################################################################
|
||||||
|
|
||||||
|
add_qt_executable(testlib
|
||||||
|
NO_INSTALL # special case
|
||||||
|
OUTPUT_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR} # special case
|
||||||
|
GUI
|
||||||
|
SOURCES
|
||||||
|
tst_testlib.cpp
|
||||||
|
PUBLIC_LIBRARIES
|
||||||
|
Qt::Test
|
||||||
|
)
|
||||||
|
|
||||||
|
#### Keys ignored in scope 1:.:.:testlib.pro:<TRUE>:
|
||||||
|
# CONFIG = "-debug_and_release_target"
|
||||||
|
|
||||||
|
## Scopes:
|
||||||
|
#####################################################################
|
||||||
|
|
||||||
|
#### Keys ignored in scope 2:.:.:testlib.pro:APPLE:
|
||||||
|
# CONFIG = "-app_bundle"
|
@ -1 +1,18 @@
|
|||||||
add_qt_test(tuplediagnostics SOURCES tst_tuplediagnostics.cpp)
|
# Generated from tuplediagnostics.pro.
|
||||||
|
|
||||||
|
#####################################################################
|
||||||
|
## tuplediagnostics Binary:
|
||||||
|
#####################################################################
|
||||||
|
|
||||||
|
add_qt_executable(tuplediagnostics
|
||||||
|
NO_INSTALL # special case
|
||||||
|
OUTPUT_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR} # special case
|
||||||
|
GUI
|
||||||
|
SOURCES
|
||||||
|
tst_tuplediagnostics.cpp
|
||||||
|
PUBLIC_LIBRARIES
|
||||||
|
Qt::Test
|
||||||
|
)
|
||||||
|
|
||||||
|
#### Keys ignored in scope 1:.:.:tuplediagnostics.pro:<TRUE>:
|
||||||
|
# CONFIG = "-app_bundle" "-debug_and_release_target"
|
||||||
|
24
tests/auto/testlib/selftests/verbose1/CMakeLists.txt
Normal file
24
tests/auto/testlib/selftests/verbose1/CMakeLists.txt
Normal file
@ -0,0 +1,24 @@
|
|||||||
|
# Generated from verbose1.pro.
|
||||||
|
|
||||||
|
#####################################################################
|
||||||
|
## verbose1 Binary:
|
||||||
|
#####################################################################
|
||||||
|
|
||||||
|
add_qt_executable(verbose1
|
||||||
|
NO_INSTALL # special case
|
||||||
|
OUTPUT_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR} # special case
|
||||||
|
GUI
|
||||||
|
SOURCES
|
||||||
|
../counting/tst_counting.cpp
|
||||||
|
PUBLIC_LIBRARIES
|
||||||
|
Qt::Test
|
||||||
|
)
|
||||||
|
|
||||||
|
#### Keys ignored in scope 1:.:.:verbose1.pro:<TRUE>:
|
||||||
|
# CONFIG = "-debug_and_release_target"
|
||||||
|
|
||||||
|
## Scopes:
|
||||||
|
#####################################################################
|
||||||
|
|
||||||
|
#### Keys ignored in scope 2:.:.:verbose1.pro:APPLE_OSX:
|
||||||
|
# CONFIG = "-app_bundle"
|
24
tests/auto/testlib/selftests/verbose2/CMakeLists.txt
Normal file
24
tests/auto/testlib/selftests/verbose2/CMakeLists.txt
Normal file
@ -0,0 +1,24 @@
|
|||||||
|
# Generated from verbose2.pro.
|
||||||
|
|
||||||
|
#####################################################################
|
||||||
|
## verbose2 Binary:
|
||||||
|
#####################################################################
|
||||||
|
|
||||||
|
add_qt_executable(verbose2
|
||||||
|
NO_INSTALL # special case
|
||||||
|
OUTPUT_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR} # special case
|
||||||
|
GUI
|
||||||
|
SOURCES
|
||||||
|
../counting/tst_counting.cpp
|
||||||
|
PUBLIC_LIBRARIES
|
||||||
|
Qt::Test
|
||||||
|
)
|
||||||
|
|
||||||
|
#### Keys ignored in scope 1:.:.:verbose2.pro:<TRUE>:
|
||||||
|
# CONFIG = "-debug_and_release_target"
|
||||||
|
|
||||||
|
## Scopes:
|
||||||
|
#####################################################################
|
||||||
|
|
||||||
|
#### Keys ignored in scope 2:.:.:verbose2.pro:APPLE_OSX:
|
||||||
|
# CONFIG = "-app_bundle"
|
@ -0,0 +1,24 @@
|
|||||||
|
# Generated from verifyexceptionthrown.pro.
|
||||||
|
|
||||||
|
#####################################################################
|
||||||
|
## verifyexceptionthrown Binary:
|
||||||
|
#####################################################################
|
||||||
|
|
||||||
|
add_qt_executable(verifyexceptionthrown
|
||||||
|
NO_INSTALL # special case
|
||||||
|
OUTPUT_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR} # special case
|
||||||
|
GUI
|
||||||
|
SOURCES
|
||||||
|
tst_verifyexceptionthrown.cpp
|
||||||
|
PUBLIC_LIBRARIES
|
||||||
|
Qt::Test
|
||||||
|
)
|
||||||
|
|
||||||
|
#### Keys ignored in scope 1:.:.:verifyexceptionthrown.pro:<TRUE>:
|
||||||
|
# CONFIG = "-debug_and_release_target" "exceptions"
|
||||||
|
|
||||||
|
## Scopes:
|
||||||
|
#####################################################################
|
||||||
|
|
||||||
|
#### Keys ignored in scope 2:.:.:verifyexceptionthrown.pro:APPLE_OSX:
|
||||||
|
# CONFIG = "-app_bundle"
|
@ -1 +1,24 @@
|
|||||||
add_qt_test(warnings SOURCES tst_warnings.cpp)
|
# Generated from warnings.pro.
|
||||||
|
|
||||||
|
#####################################################################
|
||||||
|
## warnings Binary:
|
||||||
|
#####################################################################
|
||||||
|
|
||||||
|
add_qt_executable(warnings
|
||||||
|
NO_INSTALL # special case
|
||||||
|
OUTPUT_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR} # special case
|
||||||
|
GUI
|
||||||
|
SOURCES
|
||||||
|
tst_warnings.cpp
|
||||||
|
PUBLIC_LIBRARIES
|
||||||
|
Qt::Test
|
||||||
|
)
|
||||||
|
|
||||||
|
#### Keys ignored in scope 1:.:.:warnings.pro:<TRUE>:
|
||||||
|
# CONFIG = "-debug_and_release_target"
|
||||||
|
|
||||||
|
## Scopes:
|
||||||
|
#####################################################################
|
||||||
|
|
||||||
|
#### Keys ignored in scope 2:.:.:warnings.pro:APPLE_OSX:
|
||||||
|
# CONFIG = "-app_bundle"
|
||||||
|
27
tests/auto/testlib/selftests/watchdog/CMakeLists.txt
Normal file
27
tests/auto/testlib/selftests/watchdog/CMakeLists.txt
Normal file
@ -0,0 +1,27 @@
|
|||||||
|
# Generated from watchdog.pro.
|
||||||
|
|
||||||
|
#####################################################################
|
||||||
|
## watchdog Binary:
|
||||||
|
#####################################################################
|
||||||
|
|
||||||
|
add_qt_executable(watchdog
|
||||||
|
NO_INSTALL # special case
|
||||||
|
OUTPUT_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR} # special case
|
||||||
|
GUI
|
||||||
|
SOURCES
|
||||||
|
tst_watchdog.cpp
|
||||||
|
PUBLIC_LIBRARIES
|
||||||
|
Qt::Test
|
||||||
|
)
|
||||||
|
|
||||||
|
#### Keys ignored in scope 1:.:.:watchdog.pro:<TRUE>:
|
||||||
|
# CONFIG = "-debug_and_release_target"
|
||||||
|
# QT_TOOL_ENV = "checkenv"
|
||||||
|
# checkenv.name = "QTEST_FUNCTION_TIMEOUT"
|
||||||
|
# checkenv.value = "100"
|
||||||
|
|
||||||
|
## Scopes:
|
||||||
|
#####################################################################
|
||||||
|
|
||||||
|
#### Keys ignored in scope 2:.:.:watchdog.pro:APPLE:
|
||||||
|
# CONFIG = "-app_bundle"
|
@ -1 +1,24 @@
|
|||||||
add_qt_test(xunit SOURCES tst_xunit.cpp)
|
# Generated from xunit.pro.
|
||||||
|
|
||||||
|
#####################################################################
|
||||||
|
## xunit Binary:
|
||||||
|
#####################################################################
|
||||||
|
|
||||||
|
add_qt_executable(xunit
|
||||||
|
NO_INSTALL # special case
|
||||||
|
OUTPUT_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR} # special case
|
||||||
|
GUI
|
||||||
|
SOURCES
|
||||||
|
tst_xunit.cpp
|
||||||
|
PUBLIC_LIBRARIES
|
||||||
|
Qt::Test
|
||||||
|
)
|
||||||
|
|
||||||
|
#### Keys ignored in scope 1:.:.:xunit.pro:<TRUE>:
|
||||||
|
# CONFIG = "-debug_and_release_target"
|
||||||
|
|
||||||
|
## Scopes:
|
||||||
|
#####################################################################
|
||||||
|
|
||||||
|
#### Keys ignored in scope 2:.:.:xunit.pro:APPLE_OSX:
|
||||||
|
# CONFIG = "-app_bundle"
|
||||||
|
Loading…
Reference in New Issue
Block a user