]>
Commit | Line | Data |
---|---|---|
d2ab58ff TH |
1 | /* |
2 | * Test serial output of some machines. | |
3 | * | |
4 | * Copyright 2016 Thomas Huth, Red Hat Inc. | |
5 | * | |
6 | * This work is licensed under the terms of the GNU GPL, version 2 | |
7 | * or later. See the COPYING file in the top-level directory. | |
8 | * | |
9 | * This test is used to check that the serial output of the firmware | |
10 | * (that we provide for some machines) contains an expected string. | |
11 | * Thus we check that the firmware still boots at least to a certain | |
12 | * point and so we know that the machine is not completely broken. | |
13 | */ | |
14 | ||
15 | #include "qemu/osdep.h" | |
16 | #include "libqtest.h" | |
17 | ||
18 | typedef struct testdef { | |
19 | const char *arch; /* Target architecture */ | |
20 | const char *machine; /* Name of the machine */ | |
21 | const char *extra; /* Additional parameters */ | |
22 | const char *expect; /* Expected string in the serial output */ | |
23 | } testdef_t; | |
24 | ||
25 | static testdef_t tests[] = { | |
26 | { "alpha", "clipper", "", "PCI:" }, | |
27 | { "ppc", "ppce500", "", "U-Boot" }, | |
28 | { "ppc", "prep", "", "Open Hack'Ware BIOS" }, | |
29 | { "ppc64", "ppce500", "", "U-Boot" }, | |
30 | { "ppc64", "prep", "", "Open Hack'Ware BIOS" }, | |
31 | { "ppc64", "pseries", "", "Open Firmware" }, | |
eaa477ca | 32 | { "ppc64", "powernv", "-cpu POWER8", "SkiBoot" }, |
d2ab58ff TH |
33 | { "i386", "isapc", "-cpu qemu32 -device sga", "SGABIOS" }, |
34 | { "i386", "pc", "-device sga", "SGABIOS" }, | |
35 | { "i386", "q35", "-device sga", "SGABIOS" }, | |
36 | { "x86_64", "isapc", "-cpu qemu32 -device sga", "SGABIOS" }, | |
37 | { "x86_64", "q35", "-device sga", "SGABIOS" }, | |
38 | { "s390x", "s390-ccw-virtio", | |
39 | "-nodefaults -device sclpconsole,chardev=serial0", "virtio device" }, | |
40 | { NULL } | |
41 | }; | |
42 | ||
43 | static void check_guest_output(const testdef_t *test, int fd) | |
44 | { | |
45 | bool output_ok = false; | |
92b540da | 46 | int i, nbr, pos = 0, ccnt; |
d2ab58ff TH |
47 | char ch; |
48 | ||
49 | /* Poll serial output... Wait at most 60 seconds */ | |
50 | for (i = 0; i < 6000; ++i) { | |
92b540da TH |
51 | ccnt = 0; |
52 | while ((nbr = read(fd, &ch, 1)) == 1 && ccnt++ < 512) { | |
d2ab58ff TH |
53 | if (ch == test->expect[pos]) { |
54 | pos += 1; | |
55 | if (test->expect[pos] == '\0') { | |
56 | /* We've reached the end of the expected string! */ | |
57 | output_ok = true; | |
58 | goto done; | |
59 | } | |
60 | } else { | |
61 | pos = 0; | |
62 | } | |
63 | } | |
64 | g_assert(nbr >= 0); | |
65 | g_usleep(10000); | |
66 | } | |
67 | ||
68 | done: | |
69 | g_assert(output_ok); | |
70 | } | |
71 | ||
72 | static void test_machine(const void *data) | |
73 | { | |
74 | const testdef_t *test = data; | |
d2ab58ff TH |
75 | char tmpname[] = "/tmp/qtest-boot-serial-XXXXXX"; |
76 | int fd; | |
77 | ||
78 | fd = mkstemp(tmpname); | |
79 | g_assert(fd != -1); | |
80 | ||
b96919d7 CH |
81 | /* |
82 | * Make sure that this test uses tcg if available: It is used as a | |
83 | * fast-enough smoketest for that. | |
84 | */ | |
78b27bad EB |
85 | global_qtest = qtest_startf("-M %s,accel=tcg:kvm " |
86 | "-chardev file,id=serial0,path=%s " | |
87 | "-no-shutdown -serial chardev:serial0 %s", | |
88 | test->machine, tmpname, test->extra); | |
d2ab58ff TH |
89 | unlink(tmpname); |
90 | ||
91 | check_guest_output(test, fd); | |
92 | qtest_quit(global_qtest); | |
93 | ||
d2ab58ff TH |
94 | close(fd); |
95 | } | |
96 | ||
97 | int main(int argc, char *argv[]) | |
98 | { | |
99 | const char *arch = qtest_get_arch(); | |
100 | int i; | |
101 | ||
102 | g_test_init(&argc, &argv, NULL); | |
103 | ||
104 | for (i = 0; tests[i].arch != NULL; i++) { | |
105 | if (strcmp(arch, tests[i].arch) == 0) { | |
106 | char *name = g_strdup_printf("boot-serial/%s", tests[i].machine); | |
107 | qtest_add_data_func(name, &tests[i], test_machine); | |
108 | g_free(name); | |
109 | } | |
110 | } | |
111 | ||
112 | return g_test_run(); | |
113 | } |