Skip to content

Commit

Permalink
Crossbench: use file server to run Speedometer
Browse files Browse the repository at this point in the history
Already using file server on Android. Expanding it to
desktop as well.

Change-Id: Ieccee4cbf7c6fe9ecff6b1ec4693ae04f0504336
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/6035892
Commit-Queue: John Chen <[email protected]>
Reviewed-by: Farid (Mojtaba) Faridzad <[email protected]>
Cr-Commit-Position: refs/heads/main@{#1388917}
  • Loading branch information
JohnChen0 authored and pull[bot] committed Dec 3, 2024
1 parent c558ece commit 1378703
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions testing/scripts/run_performance_tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -735,9 +735,8 @@ def _get_network_arg(self, args):
return self._create_fileserver_network(_arg)
if self._get_arg(args, '--wpr'):
return self._create_wpr_network(args)
if (self.is_android
and self.options.benchmarks in self.BENCHMARK_FILESERVERS):
# --fileserver is required in this case. Supply it.
if self.options.benchmarks in self.BENCHMARK_FILESERVERS:
# Use file server when it is available.
arg = '--fileserver'
args.append(arg)
return self._create_fileserver_network(arg)
Expand Down

0 comments on commit 1378703

Please sign in to comment.