Przeglądaj źródła

LibJS: Remove bytecode option from the test262 runner

This scripts have been updated to not use this option.
Timothy Flynn 1 rok temu
rodzic
commit
c20df34b79
1 zmienionych plików z 0 dodań i 3 usunięć
  1. 0 3
      Tests/LibJS/test262-runner.cpp

+ 0 - 3
Tests/LibJS/test262-runner.cpp

@@ -563,13 +563,10 @@ int main(int argc, char** argv)
     int timeout = 10;
     int timeout = 10;
     bool enable_debug_printing = false;
     bool enable_debug_printing = false;
     bool disable_core_dumping = false;
     bool disable_core_dumping = false;
-    bool use_bytecode = false;
 
 
     Core::ArgsParser args_parser;
     Core::ArgsParser args_parser;
     args_parser.set_general_help("LibJS test262 runner for streaming tests");
     args_parser.set_general_help("LibJS test262 runner for streaming tests");
     args_parser.add_option(s_harness_file_directory, "Directory containing the harness files", "harness-location", 'l', "harness-files");
     args_parser.add_option(s_harness_file_directory, "Directory containing the harness files", "harness-location", 'l', "harness-files");
-    // FIXME: Remove this option after updating the test262 scripts.
-    args_parser.add_option(use_bytecode, "Use the bytecode interpreter", "use-bytecode", 'b');
     args_parser.add_option(s_parse_only, "Only parse the files", "parse-only", 'p');
     args_parser.add_option(s_parse_only, "Only parse the files", "parse-only", 'p');
     args_parser.add_option(timeout, "Seconds before test should timeout", "timeout", 't', "seconds");
     args_parser.add_option(timeout, "Seconds before test should timeout", "timeout", 't', "seconds");
     args_parser.add_option(enable_debug_printing, "Enable debug printing", "debug", 'd');
     args_parser.add_option(enable_debug_printing, "Enable debug printing", "debug", 'd');