Skip to content
Snippets Groups Projects
Commit c673997b authored by Dan Nixon's avatar Dan Nixon
Browse files

Merge pull request #477 from mantidproject/11438_logparsertest_valgring_errors

Memory leak in LogParserTest
parents 78908da1 db8475eb
No related branches found
No related tags found
No related merge requests found
......@@ -539,6 +539,7 @@ public:
TS_ASSERT_EQUALS( it->second, " Third line"); ++it;
TS_ASSERT_EQUALS( it->first.toISO8601String(), "2000-09-05T12:23:33");
TS_ASSERT_EQUALS( it->second, " Fourth line"); ++it;
delete prop;
}
void test_num_repeat()
......@@ -561,6 +562,7 @@ public:
TS_ASSERT_EQUALS( it->second, 5); ++it;
TS_ASSERT_EQUALS( it->first.toISO8601String(), "2000-09-05T12:23:33");
TS_ASSERT_EQUALS( it->second, 6); ++it;
delete prop;
}
void test_str_continuation()
......@@ -577,6 +579,7 @@ public:
TS_ASSERT_EQUALS( it->second, " First line"); ++it;
TS_ASSERT_EQUALS( it->first.toISO8601String(), "2000-09-05T12:22:34");
TS_ASSERT_EQUALS( it->second, " Second line Third line"); ++it;
delete prop;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment