2012-03-28 15:42:02 +02: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
|
|
|
|
|
|
|
|
#include "qemu-common.h"
|
2014-02-10 02:28:02 +01:00
|
|
|
#include "qapi/error.h"
|
2012-03-28 15:42:02 +02:00
|
|
|
|
2013-01-24 06:03:27 +01:00
|
|
|
extern bool qtest_allowed;
|
2012-03-28 15:42:02 +02:00
|
|
|
|
|
|
|
static inline bool qtest_enabled(void)
|
|
|
|
{
|
|
|
|
return qtest_allowed;
|
|
|
|
}
|
|
|
|
|
2014-02-04 19:06:47 +01:00
|
|
|
bool qtest_driver(void);
|
|
|
|
|
2014-02-10 02:28:02 +01:00
|
|
|
void qtest_init(const char *qtest_chrdev, const char *qtest_log, Error **errp);
|
2013-10-18 13:51:11 +02:00
|
|
|
|
2012-03-28 15:42:02 +02:00
|
|
|
static inline int qtest_available(void)
|
|
|
|
{
|
2013-10-18 13:51:11 +02:00
|
|
|
#ifdef CONFIG_POSIX
|
2012-03-28 15:42:02 +02:00
|
|
|
return 1;
|
2012-04-19 20:52:35 +02:00
|
|
|
#else
|
|
|
|
return 0;
|
|
|
|
#endif
|
2013-10-18 13:51:11 +02:00
|
|
|
}
|
2012-03-28 15:42:02 +02:00
|
|
|
|
|
|
|
#endif
|