below test crashed on Fedora 40 and 41 because of incompatibility between VDB and TBB
| 13 | |
| 14 | // below test crashed on Fedora 40 and 41 because of incompatibility between VDB and TBB |
| 15 | TEST( MRMesh, VersionVDB ) |
| 16 | { |
| 17 | #if defined TBB_VERSION_PATCH |
| 18 | spdlog::info( "TBB version: {}.{}.{}", TBB_VERSION_MAJOR, TBB_VERSION_MINOR, TBB_VERSION_PATCH ); |
| 19 | #else |
| 20 | spdlog::info( "TBB version: {}.{}", TBB_VERSION_MAJOR, TBB_VERSION_MINOR ); |
| 21 | #endif |
| 22 | spdlog::info( "OpenVDB version: {}", OPENVDB_LIBRARY_VERSION_STRING ); |
| 23 | } |
| 24 | |
| 25 | TEST( MRMesh, MeshVoxelsConverterSelfIntersections ) |
| 26 | { |
nothing calls this directly
no test coverage detected