Index: test/cctest/test-parsing.cc |
diff --git a/test/cctest/test-parsing.cc b/test/cctest/test-parsing.cc |
index f097505d76e8cb7683594fc77da5c539f4955f37..f32714d66232b37fe35ff641dcfccc19fc1aadfe 100644 |
--- a/test/cctest/test-parsing.cc |
+++ b/test/cctest/test-parsing.cc |
@@ -218,7 +218,7 @@ class ScriptResource : public v8::String::ExternalOneByteStringResource { |
TEST(UsingCachedData) { |
// Producing cached parser data while parsing eagerly is not supported. |
- if (!i::FLAG_lazy || (i::FLAG_ignition && i::FLAG_ignition_eager)) return; |
+ if (!i::FLAG_lazy) return; |
v8::Isolate* isolate = CcTest::isolate(); |
v8::HandleScope handles(isolate); |
@@ -271,7 +271,7 @@ TEST(UsingCachedData) { |
TEST(PreparseFunctionDataIsUsed) { |
// Producing cached parser data while parsing eagerly is not supported. |
- if (!i::FLAG_lazy || (i::FLAG_ignition && i::FLAG_ignition_eager)) return; |
+ if (!i::FLAG_lazy) return; |
// This tests that we actually do use the function data generated by the |
// preparser. |
@@ -462,7 +462,7 @@ TEST(RegressChromium62639) { |
TEST(Regress928) { |
// Test only applies when lazy parsing. |
- if (!i::FLAG_lazy || (i::FLAG_ignition && i::FLAG_ignition_eager)) return; |
+ if (!i::FLAG_lazy) return; |
i::FLAG_min_preparse_length = 0; |
// Tests that the first non-toplevel function is not included in the preparse |
@@ -3147,7 +3147,7 @@ TEST(FuncNameInferrerEscaped) { |
TEST(RegressionLazyFunctionWithErrorWithArg) { |
// Test only applies when lazy parsing. |
- if (!i::FLAG_lazy || (i::FLAG_ignition && i::FLAG_ignition_eager)) return; |
+ if (!i::FLAG_lazy) return; |
// The bug occurred when a lazy function had an error which requires a |
// parameter (such as "unknown label" here). The error message was processed |