From 6a3c3148c522a2518d491526ff0edb6e1b178cba Mon Sep 17 00:00:00 2001 From: Even Rouault Date: Sun, 22 Dec 2024 20:42:54 +0100 Subject: [PATCH] autotest: fix Coverity Scan warning --- autotest/cpp/test_gdal_algorithm.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/autotest/cpp/test_gdal_algorithm.cpp b/autotest/cpp/test_gdal_algorithm.cpp index 21fa0f5a963d..6174c5826c85 100644 --- a/autotest/cpp/test_gdal_algorithm.cpp +++ b/autotest/cpp/test_gdal_algorithm.cpp @@ -501,7 +501,7 @@ TEST_F(test_gdal_algorithm, wrong_long_name_dash) }; MyAlgorithm alg; - alg.Run(); + CPL_IGNORE_RET_VAL(alg.Run()); } TEST_F(test_gdal_algorithm, wrong_long_name_contains_equal)