aboutsummaryrefslogtreecommitdiffstats
path: root/stubs/error-printf.c
diff options
context:
space:
mode:
Diffstat (limited to 'stubs/error-printf.c')
-rw-r--r--stubs/error-printf.c22
1 files changed, 22 insertions, 0 deletions
diff --git a/stubs/error-printf.c b/stubs/error-printf.c
new file mode 100644
index 000000000..a2f61521a
--- /dev/null
+++ b/stubs/error-printf.c
@@ -0,0 +1,22 @@
+#include "qemu/osdep.h"
+#include "qemu/error-report.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);
+}