Index: test/cctest/interpreter/generate-bytecode-expectations.cc |
diff --git a/test/cctest/interpreter/generate-bytecode-expectations.cc b/test/cctest/interpreter/generate-bytecode-expectations.cc |
index b9276da6b01df3711d7074445c942a11d399bda5..ed1c692050ce3c0f792e2dae4c7dc25a912aa548 100644 |
--- a/test/cctest/interpreter/generate-bytecode-expectations.cc |
+++ b/test/cctest/interpreter/generate-bytecode-expectations.cc |
@@ -40,7 +40,6 @@ class ProgramOptions final { |
read_from_stdin_(false), |
rebaseline_(false), |
wrap_(true), |
- execute_(true), |
top_level_(false), |
do_expressions_(false), |
verbose_(false) {} |
@@ -58,7 +57,6 @@ class ProgramOptions final { |
} |
bool rebaseline() const { return rebaseline_; } |
bool wrap() const { return wrap_; } |
- bool execute() const { return execute_; } |
bool top_level() const { return top_level_; } |
bool do_expressions() const { return do_expressions_; } |
bool verbose() const { return verbose_; } |
@@ -74,7 +72,6 @@ class ProgramOptions final { |
bool read_from_stdin_; |
bool rebaseline_; |
bool wrap_; |
- bool execute_; |
bool top_level_; |
bool do_expressions_; |
bool verbose_; |
@@ -160,8 +157,6 @@ ProgramOptions ProgramOptions::FromCommandLine(int argc, char** argv) { |
options.rebaseline_ = true; |
} else if (strcmp(argv[i], "--no-wrap") == 0) { |
options.wrap_ = false; |
- } else if (strcmp(argv[i], "--no-execute") == 0) { |
- options.execute_ = false; |
} else if (strcmp(argv[i], "--top-level") == 0) { |
options.top_level_ = true; |
} else if (strcmp(argv[i], "--do-expressions") == 0) { |
@@ -252,9 +247,7 @@ void ProgramOptions::UpdateFromHeader(std::istream& stream) { |
} |
while (std::getline(stream, line)) { |
- if (line.compare(0, 9, "execute: ") == 0) { |
- execute_ = ParseBoolean(line.c_str() + 9); |
- } else if (line.compare(0, 6, "wrap: ") == 0) { |
+ if (line.compare(0, 6, "wrap: ") == 0) { |
wrap_ = ParseBoolean(line.c_str() + 6); |
} else if (line.compare(0, 20, "test function name: ") == 0) { |
test_function_name_ = line.c_str() + 20; |
@@ -275,7 +268,6 @@ void ProgramOptions::UpdateFromHeader(std::istream& stream) { |
void ProgramOptions::PrintHeader(std::ostream& stream) const { // NOLINT |
stream << "---" |
- << "\nexecute: " << BooleanToString(execute_) |
<< "\nwrap: " << BooleanToString(wrap_); |
if (!test_function_name_.empty()) { |
@@ -381,7 +373,6 @@ void GenerateExpectationsFile(std::ostream& stream, // NOLINT |
BytecodeExpectationsPrinter printer(platform.isolate()); |
printer.set_wrap(options.wrap()); |
- printer.set_execute(options.execute()); |
printer.set_top_level(options.top_level()); |
if (!options.test_function_name().empty()) { |
printer.set_test_function_name(options.test_function_name()); |
@@ -435,7 +426,6 @@ void PrintUsage(const char* exec_path) { |
" --stdin Read from standard input instead of file.\n" |
" --rebaseline Rebaseline input snippet file.\n" |
" --no-wrap Do not wrap the snippet in a function.\n" |
- " --no-execute Do not execute after compilation.\n" |
" --test-function-name=foo " |
"Specify the name of the test function.\n" |
" --top-level Process top level code, not the top-level function.\n" |
@@ -447,9 +437,9 @@ void PrintUsage(const char* exec_path) { |
" Specify the type of the entries in the constant pool " |
"(default: mixed).\n" |
"\n" |
- "When using --rebaseline, flags --no-wrap, --no-execute, " |
- "--test-function-name\nand --pool-type will be overridden by the " |
- "options specified in the input file\nheader.\n\n" |
+ "When using --rebaseline, flags --no-wrap, --test-function-name \n" |
+ "and --pool-type will be overridden by the options specified in \n" |
+ "the input file header.\n\n" |
"Each raw JavaScript file is interpreted as a single snippet.\n\n" |
"This tool is intended as a help in writing tests.\n" |
"Please, DO NOT blindly copy and paste the output " |