Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(11)

Unified Diff: test/cctest/compiler/test-run-inlining.cc

Issue 505753002: Fix borked tests after r23354. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 6 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/cctest/compiler/test-run-inlining.cc
diff --git a/test/cctest/compiler/test-run-inlining.cc b/test/cctest/compiler/test-run-inlining.cc
index e676fb28764dbb1a9e30bd759dd1915935a71ed1..5e5b604b1da645ca1c0a6a8e59f62bbab98cd319 100644
--- a/test/cctest/compiler/test-run-inlining.cc
+++ b/test/cctest/compiler/test-run-inlining.cc
@@ -36,6 +36,7 @@ static void InstallAssertStackDepthHelper(v8::Isolate* isolate) {
TEST(SimpleInlining) {
+ FLAG_context_specialization = true;
FLAG_turbo_inlining = true;
FunctionTester T(
"(function(){"
@@ -49,6 +50,7 @@ TEST(SimpleInlining) {
TEST(SimpleInliningContext) {
+ FLAG_context_specialization = true;
FLAG_turbo_inlining = true;
FunctionTester T(
"(function () {"
@@ -63,6 +65,7 @@ TEST(SimpleInliningContext) {
TEST(CaptureContext) {
+ FLAG_context_specialization = true;
FLAG_turbo_inlining = true;
FunctionTester T(
"var f = (function () {"
@@ -80,6 +83,7 @@ TEST(CaptureContext) {
// 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(DontInlineEval) {
TEST(InlineOmitArguments) {
+ FLAG_context_specialization = true;
FLAG_turbo_inlining = true;
FunctionTester T(
"(function () {"
@@ -108,6 +113,7 @@ TEST(InlineOmitArguments) {
TEST(InlineSurplusArguments) {
+ FLAG_context_specialization = true;
FLAG_turbo_inlining = true;
FunctionTester T(
"(function () {"
@@ -123,6 +129,7 @@ TEST(InlineSurplusArguments) {
TEST(InlineTwice) {
+ FLAG_context_specialization = true;
FLAG_turbo_inlining = true;
FunctionTester T(
"(function () {"
@@ -137,6 +144,7 @@ TEST(InlineTwice) {
TEST(InlineTwiceDependent) {
+ FLAG_context_specialization = true;
FLAG_turbo_inlining = true;
FunctionTester T(
"(function () {"
@@ -152,6 +160,7 @@ TEST(InlineTwiceDependent) {
TEST(InlineTwiceDependentDiamond) {
+ FLAG_context_specialization = true;
FLAG_turbo_inlining = true;
FunctionTester T(
"(function () {"
@@ -167,6 +176,7 @@ TEST(InlineTwiceDependentDiamond) {
TEST(InlineTwiceDependentDiamondReal) {
+ FLAG_context_specialization = true;
FLAG_turbo_inlining = true;
FunctionTester T(
"(function () {"
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698