Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Unified Diff: test/JsEngine.cpp

Issue 29442653: xxx (Closed) Base URL: https://github.com/adblockplus/libadblockplus.git
Patch Set: Created May 19, 2017, 5:04 p.m.
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « test/BaseJsTest.cpp ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/JsEngine.cpp
diff --git a/test/JsEngine.cpp b/test/JsEngine.cpp
index b26c794ffabb4a2a6ec2c19fe0adfceffed30c21..3a115808c3f230362b1941cbccc25fe6bd86a8e9 100644
--- a/test/JsEngine.cpp
+++ b/test/JsEngine.cpp
@@ -188,3 +188,25 @@ TEST(NewJsEngineTest, GlobalPropertyTest)
ASSERT_EQ(foo.AsString(), "bar");
}
+TEST(NewJsEngineTest, MemoryLeak_NoCircularReferences)
+{
+ std::weak_ptr<AdblockPlus::JsEngine> weakJsEngine;
+ {
+ weakJsEngine = AdblockPlus::JsEngine::New();
+ }
+ EXPECT_FALSE(weakJsEngine.lock());
+}
+
+TEST(NewJsEngineTest, MemoryLeak_NoLeak)
+{
+ // v8::Isolate by default requires 32MB (depends on platform), so if there is
+ // a memory leak than we will run out of memory on 32 bit platform because it
+ // will allocate 32000 MB which is less than 2GB where it reaches out of
+ // memory. Even on android where it allocates initially 16MB, the test still
+ // makes sense.
+ int i = 1000;
+ while (i-->0)
+ {
+ AdblockPlus::JsEngine::New();
+ }
+}
« no previous file with comments | « test/BaseJsTest.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld