##// END OF EJS Templates
Added Y log tag for Spectrograms...
Added Y log tag for Spectrograms Signed-off-by: Alexis Jeandet <alexis.jeandet@member.fsf.org>

File last commit:

r69:cc26524fb5d1
r87:c6cf2dba079d
Show More
CMakeLists.txt
50 lines | 2.5 KiB | text/plain | TextLexer
First init from SciQLop Core module...
r0 add_definitions(-DCORE_TESTS_RESOURCES_DIR="${CMAKE_CURRENT_LIST_DIR}/../tests-resources")
More VC2 tests refactoring...
r5 FILE (GLOB_RECURSE TestUtilsSources
TestUtils/TestProviders.h
TestUtils/TestProviders.cpp
)
add_library(TestUtils ${TestUtilsSources})
target_link_libraries(TestUtils sciqlopcore Qt5::Test)
Added build interface for TestUtils...
r37 target_include_directories(TestUtils PUBLIC
$<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}>/TestUtils
)
First init from SciQLop Core module...
r0
declare_test(TestStringUtils TestStringUtils Common/TestStringUtils.cpp "sciqlopcore;Qt5::Test")
declare_test(TestContainers TestContainers Common/TestContainers.cpp "sciqlopcore;Qt5::Test")
Added SynchronizationGroup2 tests and documentation...
r1 declare_test(TestSyncGroup TestSyncGroup Variable/TestSyncGroup.cpp "sciqlopcore;Qt5::Test")
First init from SciQLop Core module...
r0
Added DateTimeRange unit Tests...
r6 declare_test(TestDateTimeRange TestDateTimeRange Data/TestDateTimeRange.cpp "sciqlopcore;Qt5::Test")
First init from SciQLop Core module...
r0 declare_test(TestDataSourceController TestDataSourceController
"DataSource/TestDataSourceController.cpp;DataSource/DataSourceItemBuilder.cpp"
"sciqlopcore;Qt5::Test")
declare_test(TestDataSourceItem TestDataSourceItem
"DataSource/TestDataSourceItem.cpp;DataSource/DataSourceItemBuilder.cpp"
"sciqlopcore;Qt5::Test")
declare_test(TestVariable TestVariable Variable/TestVariable.cpp "sciqlopcore;Qt5::Test")
Made downloader thread safe, added debugging helper for DateTimeRange...
r34 declare_test(TestDownloader TestDownloader Network/TestDownloader.cpp "sciqlopcore;Qt5::Test;Qt5::Concurrent")
First init from SciQLop Core module...
r0
More VC2 tests refactoring...
r5 declare_test(TestVariableController2 TestVariableController2 Variable/TestVariableController2.cpp "sciqlopcore;TestUtils;Qt5::Test")
Basic asynchronous variable update, still a lot to do...
r17 declare_test(TestVariableController2Async TestVariableController2Async Variable/TestVariableController2Async.cpp "sciqlopcore;TestUtils;Qt5::Test")
Many fixes plus implemented var synchronization...
r9 declare_test(TestVariableController2WithSync TestVariableController2WithSync Variable/TestVariableController2WithSync.cpp "sciqlopcore;TestUtils;Qt5::Test")
[Catalogues] Switch to new catalogues lib in progress, load/saves/query methods implemented for new...
r53
declare_test(TestCatalogueController TestCatalogueController CatalogueController/TestCatalogueController.cpp "sciqlopcore;TestUtils;Qt5::Test")
More work on new Variable python bindings...
r63
New TimeSeries classes mostly usable from Python...
r65 add_executable(TestVariablesEmbed TestUtils/PyTestWrapperExe.cpp)
target_link_libraries(TestVariablesEmbed PRIVATE pybind11::embed)
add_test(NAME TestTestVariablesEmbed COMMAND TestVariablesEmbed)
target_compile_definitions(TestVariablesEmbed PRIVATE -DPYTEST_SCRIPT="${CMAKE_CURRENT_LIST_DIR}/TestVariables.py")
set_tests_properties(TestTestVariablesEmbed PROPERTIES ENVIRONMENT PYTHONPATH=${CMAKE_CURRENT_BINARY_DIR}/../)
More work on new Variable python bindings...
r63
find_package(PythonInterp 3 REQUIRED)
add_test(NAME TestVariables
COMMAND ${PYTHON_EXECUTABLE}
${CMAKE_CURRENT_LIST_DIR}/TestVariables.py
TestVariables)
set_tests_properties(TestVariables PROPERTIES ENVIRONMENT PYTHONPATH=${CMAKE_CURRENT_BINARY_DIR}/../)