Revision: 4845
Author: [email protected]
Date: Fri Jun 11 03:37:34 2010
Log: Push revision 4842 to trunk (disable flush code test when FLAG_flush_code is false).
Review URL: http://codereview.chromium.org/2754012
http://code.google.com/p/v8/source/detail?r=4845

Modified:
 /trunk/src/version.cc
 /trunk/test/cctest/test-heap.cc

=======================================
--- /trunk/src/version.cc       Fri Jun 11 00:46:10 2010
+++ /trunk/src/version.cc       Fri Jun 11 03:37:34 2010
@@ -35,7 +35,7 @@
 #define MAJOR_VERSION     2
 #define MINOR_VERSION     2
 #define BUILD_NUMBER      16
-#define PATCH_LEVEL       1
+#define PATCH_LEVEL       2
 #define CANDIDATE_VERSION false

 // Define SONAME to have the SCons build the put a specific SONAME into the
=======================================
--- /trunk/test/cctest/test-heap.cc     Wed Jun  9 02:38:56 2010
+++ /trunk/test/cctest/test-heap.cc     Fri Jun 11 03:37:34 2010
@@ -960,6 +960,8 @@

 TEST(TestCodeFlushing) {
   i::FLAG_allow_natives_syntax = true;
+  // If we do not flush code this test is invalid.
+  if (!FLAG_flush_code) return;
   InitializeVM();
   v8::HandleScope scope;
   const char* source = "function foo() {"

--
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev

Reply via email to