Reviewers: Rico,
Description:
Ported patch from revision 3839 to trunk.
Please review this at http://codereview.chromium.org/7245001/
SVN Base: https://v8.googlecode.com/svn/trunk
Affected files:
M src/version.cc
M test/cctest/test-api.cc
Index: src/version.cc
diff --git a/src/version.cc b/src/version.cc
index
bd2ef9cd42f8f505fd89d74430c0fd9858a90ccf..b9190e39a1a1a69c18abdc114652662981797623
100644
--- a/src/version.cc
+++ b/src/version.cc
@@ -35,7 +35,7 @@
#define MAJOR_VERSION 3
#define MINOR_VERSION 4
#define BUILD_NUMBER 6
-#define PATCH_LEVEL 0
+#define PATCH_LEVEL 1
// Use 1 for candidates and 0 otherwise.
// (Boolean macro values are not supported by all preprocessors.)
#define IS_CANDIDATE_VERSION 0
Index: test/cctest/test-api.cc
diff --git a/test/cctest/test-api.cc b/test/cctest/test-api.cc
index
e0bcbc92cfabfcdace40f8c63937d20167879516..563ac9db3e91f518874d176b3a2e03044f219261
100644
--- a/test/cctest/test-api.cc
+++ b/test/cctest/test-api.cc
@@ -4195,7 +4195,7 @@ THREADED_TEST(NativeFunctionDeclaration) {
THREADED_TEST(NativeFunctionDeclarationError) {
v8::HandleScope handle_scope;
- const char* name = "nativedecl";
+ const char* name = "nativedeclerr";
// Syntax error in extension code.
v8::RegisterExtension(new NativeFunctionExtension(name,
"native\nfunction
foo();"));
@@ -4207,7 +4207,7 @@ THREADED_TEST(NativeFunctionDeclarationError) {
THREADED_TEST(NativeFunctionDeclarationErrorEscape) {
v8::HandleScope handle_scope;
- const char* name = "nativedecl";
+ const char* name = "nativedeclerresc";
// Syntax error in extension code - escape code in "native" means that
// it's not treated as a keyword.
v8::RegisterExtension(new NativeFunctionExtension(
--
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev