Hi,

I have successfully booted the Beagelbone board from "https://github.com/danrue/lava.therub.org" . (corresponding ymal is https://github.com/danrue/lava.therub.org/blob/master/server-overlay/etc/lava-server/dispatcher-config/health-checks/beaglebone-black.yaml)

But, now I am trying to run one more scenario (may be new scenario and not sure is it supported by LAVA lab?) i.e

1. Run the tests on already provisioned (boot) beagelbone board. (Basically I am skipping the booting mentioned and trying to run on the already provisioned/boot board)
   a) boot the target
   b) Connect Board to LAVA lab
   c) Just check the login prompt ("#") is available or not?
   c) Run the using below test definition file   (Basically this test definition file runs "ls"/"ifconfig" commands in the already provisioned(boot) board).

"
device_type: beaglebone-black
job_name: beaglebone-black healthcheck
timeouts:
job:
minutes: 10
action:
minutes: 5
priority: high
visibility: public
actions:
- test:
interactive:
- name: ls test
prompts: ["#"]
echo: discard
script:
- name: ls
command: ls
successes:
- message: "ls simple test successes"
failures:
- message: "TIMEOUT"
exception: InfrastructureError
error: "ls command failed"
- name: ifconfig
command: ifconfig
- name: wait for the prompt
command:
"

I have tried to run this. But, my test failed with the error ""Connection closed"" (Attached screenshot)

Can some one let me know solution to fix this error?

Regards,
koti