On Fri, Dec 04, 2020 at 10:50:08AM +0000, Marcel Trattner wrote:
Here some more information: The DUT is connected via USB and its power supply can be turned on and off by using Python scripts (When defining the power_on and power_off commands, should the scripts then be on the master or on the dispatcher?
dispatcher
And what are all the necessary parameters for the power on/off
There are no parameters. The exact commands that you specify for power_on and power_off is what will be called, i.e. the parameters are specified by you in the device dict.
and also the values connection_list and connection_commands?.
connection list is an arbitrary list of names you give to all possible connections to your device. Example:
{% set connection_list = ['uart1'] %}
connection_commands is a dictionary, where the keys need to be the names listed in connection_list, and the values are the actual commands used to connect to them. For example, if you are using ser2net (recommends), it might be something like this:
{% set connection_commands = {'uart1': 'telnet 192.168.122.1 2000'} %}
It is running Android with the underlying Linux configured especially for the hardware, so we would like to avoid deploying for the beginning and only run some simple shell tests to see if the connection stands. A very simple health check has been set up herehttps://paste.debian.net/1175549, maybe you could give some feedback if that would be sufficient and how future test jobs should be altered.
This paste has been lost, it probably expired during the weekend. You might want to send this type of content inline or attached when using email.