Quite limited test, to check that the chardev can be created with a
path and with the tty alias.
Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com>
Reviewed-by: Eric Blake <eblake@redhat.com>
---
tests/test-char.c | 30 ++++++++++++++++++++++++++++++
1 file changed, 30 insertions(+)
diff --git a/tests/test-char.c b/tests/test-char.c
index dfe856cb85..ecc3fec194 100644
--- a/tests/test-char.c
+++ b/tests/test-char.c
@@ -5,6 +5,7 @@
#include "qemu/config-file.h"
#include "qemu/sockets.h"
#include "chardev/char-fe.h"
+#include "chardev/char-serial.h" /* for HAVE_CHARDEV_SERIAL */
#include "sysemu/sysemu.h"
#include "qapi/error.h"
#include "qom/qom-qobject.h"
@@ -450,6 +451,32 @@ static void char_udp_test(void)
g_free(tmp);
}
+#ifdef HAVE_CHARDEV_SERIAL
+static void char_serial_test(void)
+{
+ QemuOpts *opts;
+ Chardev *chr;
+
+ opts = qemu_opts_create(qemu_find_opts("chardev"), "serial-id",
+ 1, &error_abort);
+ qemu_opt_set(opts, "backend", "serial", &error_abort);
+ qemu_opt_set(opts, "path", "/dev/null", &error_abort);
+
+ chr = qemu_chr_new_from_opts(opts, NULL);
+ g_assert_nonnull(chr);
+ /* TODO: add more tests with a pty */
+ object_unparent(OBJECT(chr));
+
+ /* test tty alias */
+ qemu_opt_set(opts, "backend", "tty", &error_abort);
+ chr = qemu_chr_new_from_opts(opts, NULL);
+ g_assert_nonnull(chr);
+ object_unparent(OBJECT(chr));
+
+ qemu_opts_del(opts);
+}
+#endif
+
static void char_file_test(void)
{
char *tmp_path = g_dir_make_tmp("qemu-test-char.XXXXXX", NULL);
@@ -597,6 +624,9 @@ int main(int argc, char **argv)
g_test_add_func("/char/file", char_file_test);
g_test_add_func("/char/socket", char_socket_test);
g_test_add_func("/char/udp", char_udp_test);
+#ifdef HAVE_CHARDEV_SERIAL
+ g_test_add_func("/char/serial", char_serial_test);
+#endif
return g_test_run();
}
--
2.13.0.91.g00982b8dd
On 06/08/2017 06:59 AM, Marc-André Lureau wrote: > Quite limited test, to check that the chardev can be created with a > path and with the tty alias. > > Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com> > Reviewed-by: Eric Blake <eblake@redhat.com> > --- > tests/test-char.c | 30 ++++++++++++++++++++++++++++++ > 1 file changed, 30 insertions(+) > > diff --git a/tests/test-char.c b/tests/test-char.c > index dfe856cb85..ecc3fec194 100644 > --- a/tests/test-char.c > +++ b/tests/test-char.c > @@ -5,6 +5,7 @@ > #include "qemu/config-file.h" > #include "qemu/sockets.h" > #include "chardev/char-fe.h" > +#include "chardev/char-serial.h" /* for HAVE_CHARDEV_SERIAL */ Either the comment or the entire #include is now spurious, given the new 1/3. -- Eric Blake, Principal Software Engineer Red Hat, Inc. +1-919-301-3266 Virtualization: qemu.org | libvirt.org
Hi ----- Original Message ----- > On 06/08/2017 06:59 AM, Marc-André Lureau wrote: > > Quite limited test, to check that the chardev can be created with a > > path and with the tty alias. > > > > Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com> > > Reviewed-by: Eric Blake <eblake@redhat.com> > > --- > > tests/test-char.c | 30 ++++++++++++++++++++++++++++++ > > 1 file changed, 30 insertions(+) > > > > diff --git a/tests/test-char.c b/tests/test-char.c > > index dfe856cb85..ecc3fec194 100644 > > --- a/tests/test-char.c > > +++ b/tests/test-char.c > > @@ -5,6 +5,7 @@ > > #include "qemu/config-file.h" > > #include "qemu/sockets.h" > > #include "chardev/char-fe.h" > > +#include "chardev/char-serial.h" /* for HAVE_CHARDEV_SERIAL */ > > Either the comment or the entire #include is now spurious, given the new > 1/3. indeed, removed > > -- > Eric Blake, Principal Software Engineer > Red Hat, Inc. +1-919-301-3266 > Virtualization: qemu.org | libvirt.org > >
© 2016 - 2025 Red Hat, Inc.