Skip to content

Commit

Permalink
Disable Sift testing when OpenCV 4.10.0 on macos ci
Browse files Browse the repository at this point in the history
  • Loading branch information
fspindle committed Jul 15, 2024
1 parent fa8d026 commit c006650
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -218,7 +218,7 @@ void run_test(const std::string &env_ipath, bool opt_click_allowed, bool opt_dis
(VISP_HAVE_OPENCV_VERSION >= 0x030411 && CV_MAJOR_VERSION < 4) || (VISP_HAVE_OPENCV_VERSION >= 0x040400)
#if (VISP_HAVE_OPENCV_VERSION != 0x040504) && (VISP_HAVE_OPENCV_VERSION != 0x040505) && \
(VISP_HAVE_OPENCV_VERSION != 0x040600) && (VISP_HAVE_OPENCV_VERSION != 0x040700) && \
(VISP_HAVE_OPENCV_VERSION != 0x040900) && \
(VISP_HAVE_OPENCV_VERSION != 0x040900) && (VISP_HAVE_OPENCV_VERSION != 0x041000) && \
(defined(__APPLE__) && defined(__MACH__))
// SIFT is known to be unstable with OpenCV 4.5.4 and 4.5.5 on macOS (see #1048)
// Same for OpenCV 4.6.0 (see #1106) where it produces an Illegal Instruction error when OpenCV 4.6.0 is
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -457,7 +457,7 @@ template <typename Type> void run_test(const std::string &env_ipath, const std::
{
#if (VISP_HAVE_OPENCV_VERSION != 0x040504) && (VISP_HAVE_OPENCV_VERSION != 0x040505) && \
(VISP_HAVE_OPENCV_VERSION != 0x040600) && (VISP_HAVE_OPENCV_VERSION != 0x040700) && \
(VISP_HAVE_OPENCV_VERSION != 0x040900) && \
(VISP_HAVE_OPENCV_VERSION != 0x040900) && (VISP_HAVE_OPENCV_VERSION != 0x041000) && \
(defined(__APPLE__) && defined(__MACH__))
// SIFT is known to be unstable with OpenCV 4.5.4 and 4.5.5 on macOS (see #1048)
// Same for OpenCV 4.6.0 (see #1106) where it produces an Illegal Instruction error when OpenCV 4.6.0 is
Expand Down

0 comments on commit c006650

Please sign in to comment.