/usr/bin/mir-smoke-test-runner is in mir-test-tools 0.31.1-0ubuntu1.
This file is owned by root:root, with mode 0o755.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 | #!/bin/bash
set +ex
date --utc --iso-8601=seconds | xargs echo "[timestamp] Start time :"
mir_rc=0
timeout=3
wayland_display="mir-smoke-test"
options="--wayland-socket-name=${wayland_display} --test-timeout=${timeout}"
if [ -v MIR_SOCKET ]
then
if [ ! -e "${MIR_SOCKET}" ]
then
echo "Error: Host endpoint '${MIR_SOCKET}' does not exist"; exit 1
fi
options="${options} --host-socket ${MIR_SOCKET}"
fi
root="$( dirname "${BASH_SOURCE[0]}" )"
client_list=`find ${root} -name mir_demo_client_* | grep -v bin$ | sed s?${root}/??`
echo "I: client_list=" ${client_list}
### Run Tests ###
for client in ${client_list}; do
echo running client ${client}
date --utc --iso-8601=seconds | xargs echo "[timestamp] Start :" ${client}
echo WAYLAND_DISPLAY=${wayland_display} ${root}/mir_demo_server ${options} --test-client ${root}/${client}
if WAYLAND_DISPLAY=${wayland_display} ${root}/mir_demo_server ${options} --test-client ${root}/${client}
then
echo "I: [PASSED]" ${root}/${client}
else
echo "I: [FAILED]" ${root}/${client}
failures="${failures} ${client}"
mir_rc=-1
fi
date --utc --iso-8601=seconds | xargs echo "[timestamp] End :" ${client}
done
date --utc --iso-8601=seconds | xargs echo "[timestamp] End time :"
if [ -n "${failures}" ]
then
echo "I: The following clients failed to execute successfully:"
for client in ${failures}; do
echo "I: ${client}"
done
fi
echo "I: Smoke testing complete with returncode ${mir_rc}"
exit ${mir_rc}
|