cro3
cro3 copied to clipboard
Abstraction Layer of ChromiumOS development
For example, run perf command on DUT, and get the perf.data with archive info; ``` cro3 perf record --dut $DUT --archive ``` And get a stat data. ``` cro3 perf...
Currently cro3 user needs to pass `--option` and `"-var brahbrah"` but this is inefficient. It should support ``` cro3 tast run --var ... ```
Add the options for local port forwarding for each DUT on `cro3 dut monitor`. This allows user to make DUT working as gateway. e.g. cro3 dut monitor mydut,192.168.111.222:3456 This will...
Bumps the npm_and_yarn group with 1 update in the /docs/servo_power_monitor directory: [micromatch](https://github.com/micromatch/micromatch). Bumps the npm_and_yarn group with 1 update in the /docs/servo_power_test directory: [micromatch](https://github.com/micromatch/micromatch). Updates `micromatch` from 4.0.5 to 4.0.8...
When I tried to inport DUT address list from stdin like; ``` cat duts.txt | while read addr; do cro3 dut list --add $addr; done ``` This command exited unexpectedly...
It is useful to support local port forwarding from DUT if the DUT is in the different network. ``` cro3 dut shell --forward 12345:123.45.67.89:1234 --dut mydut ``` Or, maybe we...