2012-03-28 17:42:02 +04:00
|
|
|
/*
|
|
|
|
* Test Server
|
|
|
|
*
|
|
|
|
* Copyright IBM, Corp. 2011
|
|
|
|
*
|
|
|
|
* Authors:
|
|
|
|
* Anthony Liguori <aliguori@us.ibm.com>
|
|
|
|
*
|
|
|
|
* This work is licensed under the terms of the GNU GPL, version 2 or later.
|
|
|
|
* See the COPYING file in the top-level directory.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef QTEST_H
|
|
|
|
#define QTEST_H
|
|
|
|
|
|
|
|
|
2013-01-24 09:03:27 +04:00
|
|
|
extern bool qtest_allowed;
|
2012-03-28 17:42:02 +04:00
|
|
|
|
|
|
|
static inline bool qtest_enabled(void)
|
|
|
|
{
|
|
|
|
return qtest_allowed;
|
|
|
|
}
|
|
|
|
|
2014-02-04 22:06:47 +04:00
|
|
|
bool qtest_driver(void);
|
|
|
|
|
2019-08-05 06:13:01 +03:00
|
|
|
void qtest_server_init(const char *qtest_chrdev, const char *qtest_log, Error **errp);
|
2013-10-18 15:51:11 +04:00
|
|
|
|
2020-02-20 07:11:01 +03:00
|
|
|
void qtest_server_set_send_handler(void (*send)(void *, const char *),
|
|
|
|
void *opaque);
|
2020-02-20 07:11:04 +03:00
|
|
|
void qtest_server_inproc_recv(void *opaque, const char *buf);
|
2020-02-20 07:11:01 +03:00
|
|
|
|
2020-08-19 14:17:19 +03:00
|
|
|
int64_t qtest_get_virtual_clock(void);
|
|
|
|
|
2012-03-28 17:42:02 +04:00
|
|
|
#endif
|