We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
It has been identified that the sysinfo and dbsync tests are not running on Windows.
sysinfo
dbsync
In fact, they are being skipped this way:
if(NOT CMAKE_SYSTEM_NAME STREQUAL "Windows") if(CMAKE_CXX_COMPILER_ID MATCHES "Clang") target_link_libraries(sysinfo PRIVATE -fprofile-arcs) else() target_link_libraries(sysinfo PRIVATE gcov) endif(CMAKE_CXX_COMPILER_ID MATCHES "Clang") add_subdirectory(tests) endif(NOT CMAKE_SYSTEM_NAME STREQUAL "Windows")
if(NOT CMAKE_SYSTEM_NAME STREQUAL "Windows") if(CMAKE_CXX_COMPILER_ID MATCHES "Clang") target_link_libraries(dbsync -fprofile-arcs) else() target_link_libraries(dbsync gcov) endif(CMAKE_CXX_COMPILER_ID MATCHES "Clang") add_subdirectory(tests) add_subdirectory(integrationTests) endif(NOT CMAKE_SYSTEM_NAME STREQUAL "Windows")
As part of this issue, this tests should be enabled and fixed so they can successfully run.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Description
It has been identified that the
sysinfo
anddbsync
tests are not running on Windows.In fact, they are being skipped this way:
sysinfo
dbsync
As part of this issue, this tests should be enabled and fixed so they can successfully run.
The text was updated successfully, but these errors were encountered: