Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(79)

Unified Diff: test/cctest/cctest.cc

Issue 9873023: Fix performance regressions due to lazy initialization. (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 8 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« src/platform-posix.cc ('K') | « src/x64/disasm-x64.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/cctest/cctest.cc
diff --git a/test/cctest/cctest.cc b/test/cctest/cctest.cc
index f638ed480fb0b4a7e14306e229ed71df7d9e779c..8762b101c0b533134b176e1654be3a97253ebbc0 100644
--- a/test/cctest/cctest.cc
+++ b/test/cctest/cctest.cc
@@ -28,6 +28,7 @@
#include <v8.h>
#include "cctest.h"
#include "debug.h"
+#include "isolate.h"
CcTest* CcTest::last_ = NULL;
@@ -71,6 +72,7 @@ static void PrintTestList(CcTest* current) {
int main(int argc, char* argv[]) {
v8::internal::FlagList::SetFlagsFromCommandLine(&argc, argv, true);
+ v8::internal::Isolate::GlobalSetup();
int tests_run = 0;
bool print_run_count = true;
for (int i = 1; i < argc; i++) {
« src/platform-posix.cc ('K') | « src/x64/disasm-x64.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698