From cafa3fd96e850acbfa2633009b873b8ecb7aee5f Mon Sep 17 00:00:00 2001 From: Jochen Eisinger Date: Fri, 29 May 2015 10:22:32 +0200 Subject: Run V8 in predictable mode for pdfium_test This won't post tasks to the background threads BUG=none R=kcc@chromium.org, tsepez@chromium.org Review URL: https://codereview.chromium.org/1157123003 --- testing/embedder_test.cpp | 3 +++ 1 file changed, 3 insertions(+) (limited to 'testing/embedder_test.cpp') diff --git a/testing/embedder_test.cpp b/testing/embedder_test.cpp index 9b21609978..70c32af8c7 100644 --- a/testing/embedder_test.cpp +++ b/testing/embedder_test.cpp @@ -193,6 +193,9 @@ EmbedderTest::~EmbedderTest() { void EmbedderTest::SetUp() { v8::V8::InitializeICU(); + // By enabling predicatble mode, V8 won't post any background tasks. + const char predictable_flag[] = "--predictable"; + v8::V8::SetFlagsFromString(predictable_flag, strlen(predictable_flag)); #ifdef V8_USE_EXTERNAL_STARTUP_DATA ASSERT_TRUE(GetExternalData(g_exe_path_, "natives_blob.bin", &natives_)); -- cgit v1.2.3