[Bf-blender-cvs] [f6af3d9197b] master: Build: remove cmake messages about disabled tests when feature is disabled

Brecht Van Lommel noreply at git.blender.org
Thu Oct 21 13:12:08 CEST 2021


Commit: f6af3d9197b6685e9916f4d2d7e43a3434857d1f
Author: Brecht Van Lommel
Date:   Tue Oct 19 09:39:40 2021 +0200
Branches: master
https://developer.blender.org/rBf6af3d9197b6685e9916f4d2d7e43a3434857d1f

Build: remove cmake messages about disabled tests when feature is disabled

No need to report this, it just adds noise to the cmake config. The messages
that we need to keep are the ones about disabling tests when the test file or
idiff are missing.

===================================================================

M	tests/python/CMakeLists.txt

===================================================================

diff --git a/tests/python/CMakeLists.txt b/tests/python/CMakeLists.txt
index b761f310b1a..92d46eb8d80 100644
--- a/tests/python/CMakeLists.txt
+++ b/tests/python/CMakeLists.txt
@@ -753,20 +753,14 @@ set(geo_node_tests
 
 if(WITH_GMP)
   list(APPEND geo_node_tests mesh/boolean)
-else()
-  MESSAGE(STATUS "Disabling mesh/boolean tests because WITH_GMP is off.")
 endif()
 
 if(WITH_OPENVDB)
   list(APPEND geo_node_tests volume)
-else()
-  MESSAGE(STATUS "Disabling volume tests because WITH_OPENVDB is off.")
 endif()
 
 if(WITH_OPENSUBDIV)
   list(APPEND geo_node_tests mesh/subdivision_tests)
-else()
-  MESSAGE(STATUS "Disabling mesh/subdivision_tests because WITH_OPENSUBDIV is off.")
 endif()
 
 foreach(geo_node_test ${geo_node_tests})



More information about the Bf-blender-cvs mailing list