mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-03 15:53:54 -06:00
build-sys: remove glib_subprocess check
The check should be unnecessary since commit
e7b3af8159
"glib: bump min required glib
library version to 2.40".
Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com>
Message-Id: <20180730153639.26466-1-marcandre.lureau@redhat.com>
Reviewed-by: Daniel P. Berrangé <berrange@redhat.com>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
This commit is contained in:
parent
1fdd474871
commit
692fbdf9f4
5 changed files with 1 additions and 18 deletions
|
@ -56,7 +56,6 @@ static void fe_event(void *opaque, int event)
|
|||
}
|
||||
}
|
||||
|
||||
#ifdef CONFIG_HAS_GLIB_SUBPROCESS_TESTS
|
||||
#ifdef _WIN32
|
||||
static void char_console_test_subprocess(void)
|
||||
{
|
||||
|
@ -106,7 +105,6 @@ static void char_stdio_test(void)
|
|||
g_test_trap_assert_passed();
|
||||
g_test_trap_assert_stdout("buf");
|
||||
}
|
||||
#endif
|
||||
|
||||
static void char_ringbuf_test(void)
|
||||
{
|
||||
|
@ -807,14 +805,12 @@ int main(int argc, char **argv)
|
|||
g_test_add_func("/char/invalid", char_invalid_test);
|
||||
g_test_add_func("/char/ringbuf", char_ringbuf_test);
|
||||
g_test_add_func("/char/mux", char_mux_test);
|
||||
#ifdef CONFIG_HAS_GLIB_SUBPROCESS_TESTS
|
||||
#ifdef _WIN32
|
||||
g_test_add_func("/char/console/subprocess", char_console_test_subprocess);
|
||||
g_test_add_func("/char/console", char_console_test);
|
||||
#endif
|
||||
g_test_add_func("/char/stdio/subprocess", char_stdio_test_subprocess);
|
||||
g_test_add_func("/char/stdio", char_stdio_test);
|
||||
#endif
|
||||
#ifndef _WIN32
|
||||
g_test_add_func("/char/pipe", char_pipe_test);
|
||||
#endif
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue