We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a41f161 commit 17579b0Copy full SHA for 17579b0
1 file changed
tests/test-vm.sh
@@ -124,6 +124,13 @@ if [ ! -d results ] || [ ! -f ./results/goss.tap ] || [ ! -f ./results/goss.exit
124
echo "Running tests inside VM failed for unknown reason" >&2
125
RC=1
126
cat results/goss.err || true
127
+ if ! kill -0 "${QEMU_PID}" 2>/dev/null; then
128
+ echo "E: qemu (pid ${QEMU_PID}) has exited" >&2
129
+ fi
130
+ if [ -r qemu.log ]; then
131
+ echo "qemu.log follows:" >&2
132
+ cat qemu.log >&2
133
134
else
135
RC=$(cat results/goss.exitcode)
136
echo "goss exitcode: $RC"
0 commit comments