blob: 0bc3456b2f179d9a2961bb8c071f1bfd18d16882 [file] [log] [blame] [view]
# Component Manager for tests
Reviewed on: 2019-07-22
This project contains a temporary prototype implementation of component manager which will be
used by fuchsia test framework to launch v2 test components until we are able to use component
manager which is started during boot.
## Building
This project can be added to builds by including `--with //src/sys/component_manager_for_test` to the `fx
set` invocation.
## Running
```
$ fx shell run component_manager_for_test \<v2_test_component_url\>
```
## Testing
Tests for this project are available in the `tests` folder.
```
$ fx run-test component_manager_for_test_integration_test
```
## Source layout
The entrypoint is located in `src/main.rs`. Integration tests
live in `tests/`.