Remove WITH_TESTS_PERFORMANCE option.

Performance tests now have their own CMake macro, which ensures they do not get
added to ctest list, so we do not have to bother about them anymore, and can always
build them (when GTests are enabled, of course).
This commit is contained in:
Bastien Montagne 2015-06-29 20:26:58 +02:00
parent 117bcfe039
commit 079b41dd37
2 changed files with 1 additions and 4 deletions

View File

@ -395,7 +395,6 @@ option(WITH_BOOST "Enable features depending on boost" ON)
# Unit testsing
option(WITH_GTESTS "Enable GTest unit testing" OFF)
option(WITH_TESTS_PERFORMANCE "Enable performance tests" OFF)
# Documentation

View File

@ -45,6 +45,4 @@ BLENDER_TEST(BLI_listbase "bf_blenlib")
BLENDER_TEST(BLI_hash_mm2a "bf_blenlib")
BLENDER_TEST(BLI_ghash "bf_blenlib")
if(WITH_TESTS_PERFORMANCE)
BLENDER_TEST_PERFORMANCE(BLI_ghash_performance "bf_blenlib")
endif()
BLENDER_TEST_PERFORMANCE(BLI_ghash_performance "bf_blenlib")