Free memory used in tests to enable use of valgrind

Summary: Its very usefull to be able to run valgrind on the tests and benchmarks. We were previously not freeing test memory so valgrind output was very messy.

Reviewed By: javache

Differential Revision: D3937493

fbshipit-source-id: 23c6970d7769b081575d39de583ba954fc65a397
This commit is contained in:
Emil Sjolander
2016-09-29 04:09:56 -07:00
committed by Facebook Github Bot
parent dbf3b11946
commit 1f300a58fb
20 changed files with 196 additions and 1 deletions

View File

@@ -135,6 +135,8 @@ TEST(CSSLayoutTest, justify_content_row_flex_start) {
ASSERT_EQ(0, CSSNodeLayoutGetTop(root_child2));
ASSERT_EQ(10, CSSNodeLayoutGetWidth(root_child2));
ASSERT_EQ(102, CSSNodeLayoutGetHeight(root_child2));
CSSNodeFreeRecursive(root);
}
TEST(CSSLayoutTest, justify_content_row_flex_end) {
@@ -198,6 +200,8 @@ TEST(CSSLayoutTest, justify_content_row_flex_end) {
ASSERT_EQ(0, CSSNodeLayoutGetTop(root_child2));
ASSERT_EQ(10, CSSNodeLayoutGetWidth(root_child2));
ASSERT_EQ(102, CSSNodeLayoutGetHeight(root_child2));
CSSNodeFreeRecursive(root);
}
TEST(CSSLayoutTest, justify_content_row_center) {
@@ -261,6 +265,8 @@ TEST(CSSLayoutTest, justify_content_row_center) {
ASSERT_EQ(0, CSSNodeLayoutGetTop(root_child2));
ASSERT_EQ(10, CSSNodeLayoutGetWidth(root_child2));
ASSERT_EQ(102, CSSNodeLayoutGetHeight(root_child2));
CSSNodeFreeRecursive(root);
}
TEST(CSSLayoutTest, justify_content_row_space_between) {
@@ -324,6 +330,8 @@ TEST(CSSLayoutTest, justify_content_row_space_between) {
ASSERT_EQ(0, CSSNodeLayoutGetTop(root_child2));
ASSERT_EQ(10, CSSNodeLayoutGetWidth(root_child2));
ASSERT_EQ(102, CSSNodeLayoutGetHeight(root_child2));
CSSNodeFreeRecursive(root);
}
TEST(CSSLayoutTest, justify_content_row_space_around) {
@@ -387,6 +395,8 @@ TEST(CSSLayoutTest, justify_content_row_space_around) {
ASSERT_EQ(0, CSSNodeLayoutGetTop(root_child2));
ASSERT_EQ(10, CSSNodeLayoutGetWidth(root_child2));
ASSERT_EQ(102, CSSNodeLayoutGetHeight(root_child2));
CSSNodeFreeRecursive(root);
}
TEST(CSSLayoutTest, justify_content_column_flex_start) {
@@ -447,6 +457,8 @@ TEST(CSSLayoutTest, justify_content_column_flex_start) {
ASSERT_EQ(10, CSSNodeLayoutGetTop(root_child2));
ASSERT_EQ(102, CSSNodeLayoutGetWidth(root_child2));
ASSERT_EQ(10, CSSNodeLayoutGetHeight(root_child2));
CSSNodeFreeRecursive(root);
}
TEST(CSSLayoutTest, justify_content_column_flex_end) {
@@ -509,6 +521,8 @@ TEST(CSSLayoutTest, justify_content_column_flex_end) {
ASSERT_EQ(92, CSSNodeLayoutGetTop(root_child2));
ASSERT_EQ(102, CSSNodeLayoutGetWidth(root_child2));
ASSERT_EQ(10, CSSNodeLayoutGetHeight(root_child2));
CSSNodeFreeRecursive(root);
}
TEST(CSSLayoutTest, justify_content_column_center) {
@@ -571,6 +585,8 @@ TEST(CSSLayoutTest, justify_content_column_center) {
ASSERT_EQ(56, CSSNodeLayoutGetTop(root_child2));
ASSERT_EQ(102, CSSNodeLayoutGetWidth(root_child2));
ASSERT_EQ(10, CSSNodeLayoutGetHeight(root_child2));
CSSNodeFreeRecursive(root);
}
TEST(CSSLayoutTest, justify_content_column_space_between) {
@@ -633,6 +649,8 @@ TEST(CSSLayoutTest, justify_content_column_space_between) {
ASSERT_EQ(92, CSSNodeLayoutGetTop(root_child2));
ASSERT_EQ(102, CSSNodeLayoutGetWidth(root_child2));
ASSERT_EQ(10, CSSNodeLayoutGetHeight(root_child2));
CSSNodeFreeRecursive(root);
}
TEST(CSSLayoutTest, justify_content_column_space_around) {
@@ -695,4 +713,6 @@ TEST(CSSLayoutTest, justify_content_column_space_around) {
ASSERT_EQ(80, CSSNodeLayoutGetTop(root_child2));
ASSERT_EQ(102, CSSNodeLayoutGetWidth(root_child2));
ASSERT_EQ(10, CSSNodeLayoutGetHeight(root_child2));
CSSNodeFreeRecursive(root);
}