Implement error_vprintf to send the output of error_report to the test log. This silences test-vmstate. Signed-off-by: Paolo Bonzini <pbonzini@redhat.com> Message-Id: <1477326663-67817-3-git-send-email-pbonzini@redhat.com>
		
			
				
	
	
		
			20 lines
		
	
	
		
			438 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
		
			438 B
		
	
	
	
		
			C
		
	
	
	
	
	
#include "qemu/osdep.h"
 | 
						|
#include "qemu-common.h"
 | 
						|
#include "qemu/error-report.h"
 | 
						|
 | 
						|
void error_vprintf(const char *fmt, va_list ap)
 | 
						|
{
 | 
						|
    if (g_test_initialized() && !g_test_subprocess()) {
 | 
						|
        char *msg = g_strdup_vprintf(fmt, ap);
 | 
						|
        g_test_message("%s", msg);
 | 
						|
        g_free(msg);
 | 
						|
    } else {
 | 
						|
        vfprintf(stderr, fmt, ap);
 | 
						|
    }
 | 
						|
}
 | 
						|
 | 
						|
void error_vprintf_unless_qmp(const char *fmt, va_list ap)
 | 
						|
{
 | 
						|
    error_vprintf(fmt, ap);
 | 
						|
}
 |