• Home
  • Raw
  • Download

Lines Matching +full:additional +full:- +full:args

3 # Use of this source code is governed by a BSD-style license that can be
32 CHART_JSON_RESULT = 'results-chart.json'
77 be executed in the Lab environment - for this usecase, either the drone OR
113 It decides browser=[system|cros-chrome]
115 browser=lacros-chrome. It is only valid for remote
139 *args, **kwargs): argument
148 chart-json.
149 @param args: additional list of arguments to pass to the script.
150 @param kwargs: additional list of keyword arguments to pass to the
171 '--output-format=%s' % output_format,
172 '--output-dir=%s' % output_dir,
173 '--browser=system',
176 browser = 'lacros-chrome' if self._is_lacros else 'cros-chrome'
180 '--browser=%s' % browser,
181 '--output-format=%s' % output_format,
182 '--output-dir=%s' % output_dir,
183 '--remote=%s' % self._host.hostname,
193 telemetry_cmd.append('--remote-ssh-port=%s' % self._host.port)
196 telemetry_cmd.append('--verbose')
197 telemetry_cmd.extend(args)
209 chart-json.
223 scp_cmd.extend(['scp', '-r'])
228 scp_cmd.append('-P %d' % self._host.port)
231 # Use rsync --remove-source-file to move rather than copy from
237 scp_cmd.extend(['rsync', '-avz', '--remove-source-files'])
282 def _run_telemetry(self, script, test_or_benchmark, output_format, *args, argument
291 @param args: additional list of arguments to pass to the script.
292 @param kwargs: additional list of keyword arguments to pass to the
301 output_format, *args, **kwargs)
334 def _run_test(self, script, test, *args): argument
341 @param args: additional list of arguments to pass to the script.
349 *args)
354 def run_telemetry_test(self, test, *args): argument
358 @param args: additional list of arguments to pass to the telemetry
364 return self._run_test(TELEMETRY_RUN_TESTS_SCRIPT, test, *args)
369 *args, argument
378 @param args: additional list of arguments to pass to the telemetry
380 @param kwargs: additional list of keyword arguments to pass to the
407 output_format, *args, **kwargs)
427 def run_gpu_integration_test(self, test, *args): argument
431 @param args: additional list of arguments to pass to the telemetry
443 cmd.extend(args)
463 # Example output, fetch_benchmark_deps.py --output-deps=deps octane:
474 f'--output-deps={deps_path} {test_name}')
493 logging.info('Copying: %s -> %s', src, dst)
540 smaller_postfixes = ('_smallerIsBetter', '-')
550 unit = unit[:-len(postfix)]
609 def __init__(self, *args, **kwargs): argument
617 python run_benchmark --browser=cros-chrome --remote=[dut] [test]
620 ssh [dut] python run_benchmark --browser=system [test]
622 @param args: The list of arguments to be passed. See Base class for a
627 super(LocalTelemetryRunner, self).__init__(*args, **kwargs)
633 the chroot. Prefer chrome-src-internal source tree to chrome-src.
636 CHROME_LOCAL_SRC = '/var/cache/chromeos-cache/distfiles/target/'
641 sources_list = ('chrome-src-internal', 'chrome-src')
669 def __init__(self, *args, **kwargs): argument
677 python run_benchmark --browser=cros-chrome --remote=[dut] [test]
680 ssh [dut] python run_benchmark --browser=system [test]
682 @param args: The list of arguments to be passed. See Base class for a
688 super(DroneTelemetryRunner, self).__init__(*args, **kwargs)