Rollup merge of #128797 - Jeff-A-Martin:fuchsia-test-runner, r=tmandry
Fuchsia Test Runner: enable ffx repository server The default repository server setting has changed on Fuchsia (default is newly "false"). Now, in order to start the repository server, the config `repository.server.enabled` must be set to true.
This commit is contained in:
commit
f4fe5c835a
@ -571,6 +571,19 @@ class TestEnvironment:
|
|||||||
)
|
)
|
||||||
|
|
||||||
# Start repository server
|
# Start repository server
|
||||||
|
# Note that we must first enable the repository server daemon.
|
||||||
|
check_call_with_logging(
|
||||||
|
[
|
||||||
|
ffx_path,
|
||||||
|
"config",
|
||||||
|
"set",
|
||||||
|
"repository.server.enabled",
|
||||||
|
"true",
|
||||||
|
],
|
||||||
|
env=ffx_env,
|
||||||
|
stdout_handler=self.subprocess_logger.debug,
|
||||||
|
stderr_handler=self.subprocess_logger.debug,
|
||||||
|
)
|
||||||
check_call_with_logging(
|
check_call_with_logging(
|
||||||
[
|
[
|
||||||
ffx_path,
|
ffx_path,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user