Exemplo n.º 1
0
    def execute(self, sys_args=None):
        if sys_args is None:  # pragma: no cover
            sys_args = sys.argv[1:]
        try:
            parser = self._create_parser()
            options, args = self._parse_args(parser, sys_args)
            if options.swarming:
                # Swarming doesn't print how isolated commands are called. Lets make
                # this less cryptic by printing it ourselves.
                print ' '.join(sys.argv)

            self._load_build_config(options)
            command.setup(self.target_os)

            try:
                self._process_default_options(options)
                self._process_options(options)
            except TestRunnerError:
                parser.print_help()
                raise

            args = self._parse_test_args(args)
            tests = self._load_testsuite_generators(args, options)
            self._setup_env()
            print(">>> Running tests for %s.%s" %
                  (self.build_config.arch, self.mode_name))
            return self._do_execute(tests, args, options)
        except TestRunnerError:
            return utils.EXIT_CODE_INTERNAL_ERROR
        except KeyboardInterrupt:
            return utils.EXIT_CODE_INTERRUPTED
        finally:
            command.tear_down()
Exemplo n.º 2
0
    def execute(self, sys_args=None):
        if sys_args is None:  # pragma: no cover
            sys_args = sys.argv[1:]
        try:
            parser = self._create_parser()
            options, args = self._parse_args(parser, sys_args)
            self.infra_staging = options.infra_staging
            if options.swarming:
                # Swarming doesn't print how isolated commands are called. Lets make
                # this less cryptic by printing it ourselves.
                print(' '.join(sys.argv))

                # TODO(machenbach): Print used Python version until we have switched to
                # Python3 everywhere.
                print('Running with:')
                print(sys.version)

                # Kill stray processes from previous tasks on swarming.
                util.kill_processes_linux()

            self._load_build_config(options)
            command.setup(self.target_os, options.device)

            try:
                self._process_default_options(options)
                self._process_options(options)
            except TestRunnerError:
                parser.print_help()
                raise

            args = self._parse_test_args(args)
            tests = self._load_testsuite_generators(args, options)
            self._setup_env()
            print(">>> Running tests for %s.%s" %
                  (self.build_config.arch, self.mode_options.label))
            exit_code = self._do_execute(tests, args, options)
            if exit_code == utils.EXIT_CODE_FAILURES and options.json_test_results:
                print(
                    "Force exit code 0 after failures. Json test results file "
                    "generated with failure information.")
                exit_code = utils.EXIT_CODE_PASS
            return exit_code
        except TestRunnerError:
            traceback.print_exc()
            return utils.EXIT_CODE_INTERNAL_ERROR
        except KeyboardInterrupt:
            return utils.EXIT_CODE_INTERRUPTED
        except Exception:
            traceback.print_exc()
            return utils.EXIT_CODE_INTERNAL_ERROR
        finally:
            command.tear_down()
Exemplo n.º 3
0
Arquivo: base_runner.py Projeto: v8/v8
  def execute(self, sys_args=None):
    if sys_args is None:  # pragma: no cover
      sys_args = sys.argv[1:]
    try:
      parser = self._create_parser()
      options, args = self._parse_args(parser, sys_args)
      if options.swarming:
        # Swarming doesn't print how isolated commands are called. Lets make
        # this less cryptic by printing it ourselves.
        print(' '.join(sys.argv))

      self._load_build_config(options)
      command.setup(self.target_os, options.device)

      try:
        self._process_default_options(options)
        self._process_options(options)
      except TestRunnerError:
        parser.print_help()
        raise

      args = self._parse_test_args(args)
      tests = self._load_testsuite_generators(args, options)
      self._setup_env()
      print(">>> Running tests for %s.%s" % (self.build_config.arch,
                                            self.mode_name))
      exit_code = self._do_execute(tests, args, options)
      if exit_code == utils.EXIT_CODE_FAILURES and options.json_test_results:
        print("Force exit code 0 after failures. Json test results file "
              "generated with failure information.")
        exit_code = utils.EXIT_CODE_PASS
      return exit_code
    except TestRunnerError:
      traceback.print_exc()
      return utils.EXIT_CODE_INTERNAL_ERROR
    except KeyboardInterrupt:
      return utils.EXIT_CODE_INTERRUPTED
    except Exception:
      traceback.print_exc()
      return utils.EXIT_CODE_INTERNAL_ERROR
    finally:
      command.tear_down()
Exemplo n.º 4
0
  def execute(self, sys_args=None):
    if sys_args is None:  # pragma: no cover
      sys_args = sys.argv[1:]
    try:
      parser = self._create_parser()
      options, args = self._parse_args(parser, sys_args)
      if options.swarming:
        # Swarming doesn't print how isolated commands are called. Lets make
        # this less cryptic by printing it ourselves.
        print ' '.join(sys.argv)

      self._load_build_config(options)
      command.setup(self.target_os)

      try:
        self._process_default_options(options)
        self._process_options(options)
      except TestRunnerError:
        parser.print_help()
        raise

      args = self._parse_test_args(args)
      suites = self._get_suites(args, options)
      self._prepare_suites(suites, options)

      self._setup_env()

      print(">>> Running tests for %s.%s" % (self.build_config.arch,
                                            self.mode_name))
      tests = [t for s in suites for t in s.tests]
      return self._do_execute(tests, args, options)
    except TestRunnerError:
      return utils.EXIT_CODE_INTERNAL_ERROR
    except KeyboardInterrupt:
      return utils.EXIT_CODE_INTERRUPTED
    finally:
      command.tear_down()