mirror of
https://gitlab.com/qemu-project/qemu
synced 2024-11-02 20:37:48 +00:00
756a98dd70
Since it depends on monitor code, and error_vprintf_unless_qmp() is already there. This will help to move error-report in a common subproject. Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com> Reviewed-by: Daniel P. Berrangé <berrange@redhat.com> Message-Id: <20220420132624.2439741-31-marcandre.lureau@redhat.com>
23 lines
539 B
C
23 lines
539 B
C
#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);
|
|
}
|