-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathqemu-test
executable file
·60 lines (51 loc) · 1.64 KB
/
qemu-test
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
60
#!/bin/sh
#
# RAUC qemu test runner script
#
# Executes the RAUC test suite in a safe qemu environment with simulated root
# privileges to emulate and test virtual devices such as block devices, NAND,
# etc.
#
# Usage:
#
# ./qemu-test <argument>
#
# Optional arguments:
#
# coverage Run with coverage report generation enabled
# shell Setup qemu test system and provide an interactive shell
#
# When no argument is given, the default test suite will be executed
set -e
rm -f qemu-test-ok
# TODO use virtfs with multidevs=remap on qemu 4.2
# https://github.com/qemu/qemu/commit/1a6ed33cc56997479bbe5b48337ff8da44585bd4
KERNEL_URL="https://github.com/jluebbe/linux/releases/download/rauc-test-20200908-1/bzImage"
KERNEL_SHA256SUM="6d12c543dc35deaa3b0946779cd88f258b6f2ad6b55775bba0bd04f52487d0e9"
check_kernel() {
if test -f bzImage && echo "$KERNEL_SHA256SUM bzImage" | sha256sum --check --status; then
return 0
fi
curl -L "$KERNEL_URL" -o bzImage.tmp
if echo "$KERNEL_SHA256SUM bzImage.tmp" | sha256sum --check --status; then
mv bzImage.tmp bzImage
else
echo "bad bzImage hash"
return 1
fi
}
check_kernel || exit 1
# make sure the tests are built
make TESTS= check > /dev/null
qemu-system-x86_64 \
-enable-kvm \
-machine q35 \
-m 256M \
-smp 2 \
-kernel bzImage \
-nographic -serial mon:stdio \
-no-reboot \
-virtfs local,id=rootfs,path=/,security_model=none,mount_tag=/dev/root \
-nic user,model=virtio-net-pci \
-append "loglevel=6 console=ttyS0 nandsim.id_bytes=0x20,0xa2,0x00,0x15 nandsim.parts=0x100, root=/dev/root rootfstype=9p rw init=$(pwd)/qemu-test-init rauc.slot=system0 $*"
test -f qemu-test-ok