21a24302e8
commit 01c22f2cdd
("main-loop: Suppress
"I/O thread spun" warnings for qtest") doesn't actually disable the
warning for everyone since some tests don't run under the qtest
accelerator.
Check qtest_driver instead.
Cc: Peter Maydell <peter.maydell@linaro.org>
Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
Message-Id: <1448882964-22433-1-git-send-email-mst@redhat.com>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
20 lines
350 B
C
20 lines
350 B
C
/*
|
|
* qtest stubs
|
|
*
|
|
* Copyright (c) 2014 Linaro Limited
|
|
* Written by Peter Maydell
|
|
*
|
|
* This work is licensed under the terms of the GNU GPL, version 2 or later.
|
|
* See the COPYING file in the top-level directory.
|
|
*/
|
|
|
|
#include "sysemu/qtest.h"
|
|
|
|
/* Needed for qtest_allowed() */
|
|
bool qtest_allowed;
|
|
|
|
bool qtest_driver(void)
|
|
{
|
|
return false;
|
|
}
|