QEMU main repository: Please see https://www.qemu.org/docs/master/devel/submitting-a-patch.html for how to submit changes to QEMU. Pull Requests are ignored. Please only use release tarballs from the QEMU website. http://www.qemu.org
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
539 B
23 lines
539 B
#include "qemu/osdep.h"
|
|
#include "qemu/error-report.h"
|
|
#include "monitor/monitor.h"
|
|
|
|
int error_vprintf(const char *fmt, va_list ap)
|
|
{
|
|
int ret;
|
|
|
|
if (g_test_initialized() && !g_test_subprocess() &&
|
|
getenv("QTEST_SILENT_ERRORS")) {
|
|
char *msg = g_strdup_vprintf(fmt, ap);
|
|
g_test_message("%s", msg);
|
|
ret = strlen(msg);
|
|
g_free(msg);
|
|
return ret;
|
|
}
|
|
return vfprintf(stderr, fmt, ap);
|
|
}
|
|
|
|
int error_vprintf_unless_qmp(const char *fmt, va_list ap)
|
|
{
|
|
return error_vprintf(fmt, ap);
|
|
}
|
|
|