Commit 586a2883 authored by David Dorwin's avatar David Dorwin Committed by Chromium LUCI CQ

[fuchsia] Add LogSink to runners_integration_tests' sandbox

Although fuchsia.logger.LogSink is provided when using
run-test-component, it still needs to be in the sandbox.

Also make indentation consistent.

Bug: 1132147
Test: The following no longer appears in the system log when running run_cast_runner_integration_tests with and without --use-run-test-component: `app#sys#fuchsia-pkg://fuchsia.com/cast_runner_integration_tests#meta/cast_runner_integration_tests.cmx` is not allowed to connect to `fuchsia.logger.LogSink` because this service is not present in the component's sandbox.
Change-Id: I67d4205156f1a0bc7eb847159ea417ec776a7832
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2586098
Auto-Submit: David Dorwin <ddorwin@chromium.org>
Commit-Queue: Wez <wez@chromium.org>
Reviewed-by: default avatarWez <wez@chromium.org>
Cr-Commit-Position: refs/heads/master@{#836065}
parent 6541a65a
......@@ -2,18 +2,18 @@
"facets": {
"fuchsia.test": {
"injected-services": {
"fuchsia.fonts.Provider": "fuchsia-pkg://fuchsia.com/fonts#meta/fonts.cmx",
"fuchsia.intl.PropertyProvider": "fuchsia-pkg://fuchsia.com/intl_property_manager#meta/intl_property_manager.cmx",
"fuchsia.memorypressure.Provider": "fuchsia-pkg://fuchsia.com/memory_monitor#meta/memory_monitor.cmx",
"fuchsia.net.interfaces.State": "fuchsia-pkg://fuchsia.com/netstack#meta/netstack.cmx",
"fuchsia.posix.socket.Provider": "fuchsia-pkg://fuchsia.com/netstack#meta/netstack.cmx",
"fuchsia.web.ContextProvider": "fuchsia-pkg://fuchsia.com/web_engine#meta/context_provider.cmx"
"fuchsia.fonts.Provider": "fuchsia-pkg://fuchsia.com/fonts#meta/fonts.cmx",
"fuchsia.intl.PropertyProvider": "fuchsia-pkg://fuchsia.com/intl_property_manager#meta/intl_property_manager.cmx",
"fuchsia.memorypressure.Provider": "fuchsia-pkg://fuchsia.com/memory_monitor#meta/memory_monitor.cmx",
"fuchsia.net.interfaces.State": "fuchsia-pkg://fuchsia.com/netstack#meta/netstack.cmx",
"fuchsia.posix.socket.Provider": "fuchsia-pkg://fuchsia.com/netstack#meta/netstack.cmx",
"fuchsia.web.ContextProvider": "fuchsia-pkg://fuchsia.com/web_engine#meta/context_provider.cmx"
},
"system-services": [
"fuchsia.device.NameProvider",
"fuchsia.scheduler.ProfileProvider",
"fuchsia.sysmem.Allocator",
"fuchsia.vulkan.loader.Loader"
"fuchsia.device.NameProvider",
"fuchsia.scheduler.ProfileProvider",
"fuchsia.sysmem.Allocator",
"fuchsia.vulkan.loader.Loader"
]
}
},
......@@ -23,14 +23,15 @@
"isolated-temp"
],
"services": [
"fuchsia.fonts.Provider",
"fuchsia.intl.PropertyProvider",
"fuchsia.memorypressure.Provider",
"fuchsia.net.interfaces.State",
"fuchsia.posix.socket.Provider",
"fuchsia.process.Launcher",
"fuchsia.sys.Launcher",
"fuchsia.web.ContextProvider"
"fuchsia.fonts.Provider",
"fuchsia.intl.PropertyProvider",
"fuchsia.logger.LogSink",
"fuchsia.memorypressure.Provider",
"fuchsia.net.interfaces.State",
"fuchsia.posix.socket.Provider",
"fuchsia.process.Launcher",
"fuchsia.sys.Launcher",
"fuchsia.web.ContextProvider"
]
}
}
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment