On Tuesday 25 July 2017 05:50 PM, Milosz Wasilewski wrote:
There is LXC and HiKey board. LXC is first used to provision the board. Than it usually sits idle. In this case I used the LXC to execute tests on HiKey with test-runner.py [1]. It won't work out of the box though. Communication between LXC and HiKey happens over SSH. So HiKey has to run SSH server, LXC needs to know the IP address of HiKey. This is done using device dictionary and DHCP configured the way HiKey always gets the same IP address.
This setup is probably not exactly what you need, but there is a way to do LXC - DUT communication without Multinode.
Another way I could think of when the test job involves Android OS (on the DUT) is to push the data produced in the LXC to the DUT using 'adb push' and vice versa using 'adb pull'.
Thank You.