summaryrefslogblamecommitdiffstats
path: root/stubs/error-printf.c
blob: 0e326d801059877234761e0ab7366c6a517f4230 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
                       
                              
                            
 
                                              
 

            

                                                       

                                              
                          
                    
                   
     
                                     

 
                                                         
 
                                  
 
#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);
}