| Index: test/JsEngine.cpp |
| diff --git a/test/JsEngine.cpp b/test/JsEngine.cpp |
| index b26c794ffabb4a2a6ec2c19fe0adfceffed30c21..96d989a020729e579944418522b36a39dea02774 100644 |
| --- a/test/JsEngine.cpp |
| +++ b/test/JsEngine.cpp |
| @@ -188,3 +188,24 @@ 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. |
| + for (int i = 0; i < 1000; ++i) |
| + { |
| + AdblockPlus::JsEngine::New(); |
| + } |
| +} |