Revision: 23356
Author:   [email protected]
Date:     Mon Aug 25 13:38:10 2014 UTC
Log:      Fix borked tests after r23354.

[email protected]
TEST=cctest/test-run-inlining

Review URL: https://codereview.chromium.org/505753002
https://code.google.com/p/v8/source/detail?r=23356

Modified:
 /branches/bleeding_edge/test/cctest/compiler/test-run-inlining.cc

=======================================
--- /branches/bleeding_edge/test/cctest/compiler/test-run-inlining.cc Wed Aug 20 13:05:03 2014 UTC +++ /branches/bleeding_edge/test/cctest/compiler/test-run-inlining.cc Mon Aug 25 13:38:10 2014 UTC
@@ -36,6 +36,7 @@


 TEST(SimpleInlining) {
+  FLAG_context_specialization = true;
   FLAG_turbo_inlining = true;
   FunctionTester T(
       "(function(){"
@@ -49,6 +50,7 @@


 TEST(SimpleInliningContext) {
+  FLAG_context_specialization = true;
   FLAG_turbo_inlining = true;
   FunctionTester T(
       "(function () {"
@@ -63,6 +65,7 @@


 TEST(CaptureContext) {
+  FLAG_context_specialization = true;
   FLAG_turbo_inlining = true;
   FunctionTester T(
       "var f = (function () {"
@@ -80,6 +83,7 @@
 // TODO(sigurds) For now we do not inline any native functions. If we do at
 // some point, change this test.
 TEST(DontInlineEval) {
+  FLAG_context_specialization = true;
   FLAG_turbo_inlining = true;
   FunctionTester T(
       "var x = 42;"
@@ -94,6 +98,7 @@


 TEST(InlineOmitArguments) {
+  FLAG_context_specialization = true;
   FLAG_turbo_inlining = true;
   FunctionTester T(
       "(function () {"
@@ -108,6 +113,7 @@


 TEST(InlineSurplusArguments) {
+  FLAG_context_specialization = true;
   FLAG_turbo_inlining = true;
   FunctionTester T(
       "(function () {"
@@ -123,6 +129,7 @@


 TEST(InlineTwice) {
+  FLAG_context_specialization = true;
   FLAG_turbo_inlining = true;
   FunctionTester T(
       "(function () {"
@@ -137,6 +144,7 @@


 TEST(InlineTwiceDependent) {
+  FLAG_context_specialization = true;
   FLAG_turbo_inlining = true;
   FunctionTester T(
       "(function () {"
@@ -152,6 +160,7 @@


 TEST(InlineTwiceDependentDiamond) {
+  FLAG_context_specialization = true;
   FLAG_turbo_inlining = true;
   FunctionTester T(
       "(function () {"
@@ -167,6 +176,7 @@


 TEST(InlineTwiceDependentDiamondReal) {
+  FLAG_context_specialization = true;
   FLAG_turbo_inlining = true;
   FunctionTester T(
       "(function () {"

--
--
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