blob: e08f851f2b081d54a77a0962b27ebf4d265298dd (
plain)
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
53
54
55
56
57
58
59
|
#!/bin/bash
if [ -z "$QEMU_PATH" ]; then
QEMU_PATH=`pwd`/opal-ci/qemu/ppc64-softmmu/
fi
if [ -z "$QEMU_BINARY" ]; then
QEMU_BINARY="qemu-system-ppc64"
fi
if [ ! -x "$QEMU_PATH/$QEMU_BINARY" ]; then
echo 'Could not find executable QEMU_BINARY. Skipping hello_world test';
exit 0;
fi
if [ -n "$KERNEL" ]; then
echo 'Please rebuild skiboot without KERNEL set. Skipping hello_world test';
exit 0;
fi
if [ ! `command -v expect` ]; then
echo 'Could not find expect binary. Skipping hello_world test';
exit 0;
fi
export SKIBOOT_ZIMAGE=`pwd`/test/hello_world/hello_kernel/hello_kernel
t=$(mktemp) || exit 1
trap "rm -f -- '$t'" EXIT
(
cat <<EOF | expect
set timeout 30
spawn $QEMU_PATH/$QEMU_BINARY -m 1G -M powernv -kernel $SKIBOOT_ZIMAGE -nographic
expect {
timeout { send_user "\nTimeout waiting for hello world\n"; exit 1 }
eof { send_user "\nUnexpected EOF\n;" exit 1 }
"Machine Check Stop" { exit 1;}
"Hello World!"
}
close
wait
exit 0
EOF
) 2>&1 > $t
r=$?
if [ $r != 0 ]; then
cat $t
exit $r
fi
rm -f -- "$t"
trap - EXIT
exit 0;
|