tests: Disable lattice_deform_performance test

This test is disabled for the following reasons:

This test is one of the longer ones in this suite (2979 out of 3559ms total)
and nothing is currently monitoring the performance, if this test were to be
20% slower one day, no-one would actually notice.

there are no asserts, the test actually cannot fail.

it's good to have some benchmark code, so like some of the other mesh
benchmark code, exclude it using an `#ifdef` guard so i can be easily
re-enabled when needed.

reviewed by: jbakker
Differential Revision: https://developer.blender.org/D16314
This commit is contained in:
Ray molenkamp 2022-11-11 13:49:12 -07:00
parent 864af51d6a
commit c5b36aa940
1 changed files with 4 additions and 0 deletions

View File

@ -13,6 +13,9 @@
#include "BLI_rand.hh"
#define DO_PERF_TESTS 0
#if DO_PERF_TESTS
namespace blender::bke::tests {
struct LatticeDeformTestContext {
@ -122,3 +125,4 @@ TEST(lattice_deform_performance, performance_no_dvert_10000000)
}
} // namespace blender::bke::tests
#endif