devlib icon indicating copy to clipboard operation
devlib copied to clipboard

Library for interaction with and instrumentation of remote devices.

Results 58 devlib issues
Sort by recently updated
recently updated
newest added

Ensure that the terminal window size is set to 500x200, if not long commands (prompt + command > 80 chars) will fail because the pexpect search to match the command...

When the target is an Android device the `su` command is needed on the target. In my case, I pushed the `su` binary from the AOSP repository I have in...

Code sometimes need to check if some kernel config options is enabled. For a lot of them, checking they are =y is actually stricter than necessary, but allowing =m means...

Idle SSH connections maintained for concurrent command execution can end up creating unwanted activity on the target. This typically is very small amount, but x50 and with "help" from the...

Target.get_pids_of() does not use busybox and just call the `ps` command with `-C` option. This breaks on systems where this option is not supported, like on busybox ps implementation.

The Collector documentation only states the constraint that `reset()` must be called at least once before the first `start()` call. There is a number of important points that are not...

Creating issue to group attempts at fixing it: https://github.com/ARM-software/devlib/pull/581 https://github.com/ARM-software/devlib/pull/587

Based on the async PR: https://github.com/ARM-software/devlib/pull/569

In order to implement a context manager that would nest correctly, we would need: * `cgroups.freeze()` currently returns the non-frozen tasks. What would be needed is the opposite so that...

enhancement

Android provides an interface to access battery counters to measure battery drain https://source.android.com/devices/tech/power/device https://perfetto.dev/docs/data-sources/battery-counters Is it possible for devlib to support this API to help with measuring power consumption of...

enhancement