]> git.proxmox.com Git - mirror_qemu.git/blame - include/sysemu/qtest.h
Merge tag 'pull-request-2023-11-14' of https://gitlab.com/thuth/qemu into staging
[mirror_qemu.git] / include / sysemu / qtest.h
CommitLineData
c7f0f3b1
AL
1/*
2 * Test Server
3 *
4 * Copyright IBM, Corp. 2011
5 *
6 * Authors:
7 * Anthony Liguori <aliguori@us.ibm.com>
8 *
9 * This work is licensed under the terms of the GNU GPL, version 2 or later.
10 * See the COPYING file in the top-level directory.
11 *
12 */
13
14#ifndef QTEST_H
15#define QTEST_H
16
c7a6bf5d 17#include "chardev/char.h"
c7f0f3b1 18
d5286af5 19extern bool qtest_allowed;
c7f0f3b1
AL
20
21static inline bool qtest_enabled(void)
22{
23 return qtest_allowed;
24}
25
c7a6bf5d
TH
26void qtest_send_prefix(CharBackend *chr);
27void G_GNUC_PRINTF(2, 3) qtest_sendf(CharBackend *chr, const char *fmt, ...);
28void qtest_set_command_cb(bool (*pc_cb)(CharBackend *chr, gchar **words));
b3be57c3
MT
29bool qtest_driver(void);
30
2b8985f1 31void qtest_server_init(const char *qtest_chrdev, const char *qtest_log, Error **errp);
d4fce24f 32
e731d083
AB
33void qtest_server_set_send_handler(void (*send)(void *, const char *),
34 void *opaque);
0bd9aef8 35void qtest_server_inproc_recv(void *opaque, const char *buf);
e731d083 36
740b1759
CF
37int64_t qtest_get_virtual_clock(void);
38
c7f0f3b1 39#endif