eo: the object size changes for the eo_debug profile

Differential Revision: https://phab.enlightenment.org/D7909
This commit is contained in:
Marcel Hollerbach 2019-02-11 19:20:45 +01:00
parent bbe0151670
commit 0221ff480d
1 changed files with 5 additions and 0 deletions

View File

@ -1794,7 +1794,12 @@ EFL_START_TEST(efl_object_size)
{
// This test is checking that we are not increasing the size of our object over time
// Update this number only if you modified the class size on purpose
#ifdef EO_DEBUG
ck_assert_int_le(efl_class_memory_size_get(SIMPLE_CLASS), 164);
#else
ck_assert_int_le(efl_class_memory_size_get(SIMPLE_CLASS), 148);
#endif
}
EFL_END_TEST