Reviewers: Mads Ager, Description: Push revision 4842 to trunk (disable flush code test when FLAG_flush_code is false).
Please review this at http://codereview.chromium.org/2754012/show SVN Base: http://v8.googlecode.com/svn/trunk/ Affected files: M src/version.cc M test/cctest/test-heap.cc Index: src/version.cc =================================================================== --- src/version.cc (revision 4841) +++ src/version.cc (working copy) @@ -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 Index: test/cctest/test-heap.cc =================================================================== --- test/cctest/test-heap.cc (revision 4840) +++ test/cctest/test-heap.cc (working copy) @@ -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
