1 #include "qemu/osdep.h"
2 #include "qemu/error-report.h"
3 #include "monitor/monitor.h"
5 int error_vprintf(const char *fmt
, va_list ap
)
9 if (g_test_initialized() && !g_test_subprocess() &&
10 getenv("QTEST_SILENT_ERRORS")) {
11 char *msg
= g_strdup_vprintf(fmt
, ap
);
12 g_test_message("%s", msg
);
17 return vfprintf(stderr
, fmt
, ap
);
20 int error_vprintf_unless_qmp(const char *fmt
, va_list ap
)
22 return error_vprintf(fmt
, ap
);