Reviewers: Michael Starzinger,

Message:
Committed patchset #1 manually as r21513 (tree was closed).

Description:
Escape % in SNPrintF call in pretenuring test.

BUG=
[email protected]

Committed: https://code.google.com/p/v8/source/detail?r=21513

Please review this at https://codereview.chromium.org/298183002/

SVN Base: https://v8.googlecode.com/svn/branches/bleeding_edge

Affected files (+10, -10 lines):
  M test/cctest/test-heap.cc


Index: test/cctest/test-heap.cc
diff --git a/test/cctest/test-heap.cc b/test/cctest/test-heap.cc
index ce0cec18d3639898763aa84cf2ee3c41a83706f2..382318c7a96af3c1e88329e9ae403a53d63aeae2 100644
--- a/test/cctest/test-heap.cc
+++ b/test/cctest/test-heap.cc
@@ -2213,7 +2213,7 @@ TEST(OptimizedPretenuringAllocationFolding) {
       "};"
       "f(); gc();"
       "f(); f();"
-      "%OptimizeFunctionOnNextCall(f);"
+      "%%OptimizeFunctionOnNextCall(f);"
       "f();",
       AllocationSite::kPretenureMinimumCreated);

@@ -2257,7 +2257,7 @@ TEST(OptimizedPretenuringObjectArrayLiterals) {
       "};"
       "f(); gc();"
       "f(); f();"
-      "%OptimizeFunctionOnNextCall(f);"
+      "%%OptimizeFunctionOnNextCall(f);"
       "f();",
       AllocationSite::kPretenureMinimumCreated);

@@ -2292,7 +2292,7 @@ TEST(OptimizedPretenuringMixedInObjectProperties) {
       "};"
       "f(); gc();"
       "f(); f();"
-      "%OptimizeFunctionOnNextCall(f);"
+      "%%OptimizeFunctionOnNextCall(f);"
       "f();",
       AllocationSite::kPretenureMinimumCreated);

@@ -2333,7 +2333,7 @@ TEST(OptimizedPretenuringDoubleArrayProperties) {
       "};"
       "f(); gc();"
       "f(); f();"
-      "%OptimizeFunctionOnNextCall(f);"
+      "%%OptimizeFunctionOnNextCall(f);"
       "f();",
       AllocationSite::kPretenureMinimumCreated);

@@ -2368,7 +2368,7 @@ TEST(OptimizedPretenuringdoubleArrayLiterals) {
       "};"
       "f(); gc();"
       "f(); f();"
-      "%OptimizeFunctionOnNextCall(f);"
+      "%%OptimizeFunctionOnNextCall(f);"
       "f();",
       AllocationSite::kPretenureMinimumCreated);

@@ -2403,7 +2403,7 @@ TEST(OptimizedPretenuringNestedMixedArrayLiterals) {
       "};"
       "f(); gc();"
       "f(); f();"
-      "%OptimizeFunctionOnNextCall(f);"
+      "%%OptimizeFunctionOnNextCall(f);"
       "f();",
       AllocationSite::kPretenureMinimumCreated);

@@ -2447,7 +2447,7 @@ TEST(OptimizedPretenuringNestedObjectLiterals) {
       "};"
       "f(); gc();"
       "f(); f();"
-      "%OptimizeFunctionOnNextCall(f);"
+      "%%OptimizeFunctionOnNextCall(f);"
       "f();",
       AllocationSite::kPretenureMinimumCreated);

@@ -2491,7 +2491,7 @@ TEST(OptimizedPretenuringNestedDoubleLiterals) {
       "};"
       "f(); gc();"
       "f(); f();"
-      "%OptimizeFunctionOnNextCall(f);"
+      "%%OptimizeFunctionOnNextCall(f);"
       "f();",
       AllocationSite::kPretenureMinimumCreated);

@@ -2547,7 +2547,7 @@ TEST(OptimizedPretenuringConstructorCalls) {
       "};"
       "f(); gc();"
       "f(); f();"
-      "%OptimizeFunctionOnNextCall(f);"
+      "%%OptimizeFunctionOnNextCall(f);"
       "f();",
       AllocationSite::kPretenureMinimumCreated);

@@ -2586,7 +2586,7 @@ TEST(OptimizedPretenuringCallNew) {
       "};"
       "f(); gc();"
       "f(); f();"
-      "%OptimizeFunctionOnNextCall(f);"
+      "%%OptimizeFunctionOnNextCall(f);"
       "f();",
       AllocationSite::kPretenureMinimumCreated);



--
--
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev
--- You received this message because you are subscribed to the Google Groups "v8-dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
For more options, visit https://groups.google.com/d/optout.

Reply via email to