From: Marc-André Lureau Date: Thu, 1 Sep 2022 11:04:14 +0000 (+0400) Subject: tests: mark io-command test as skipped if socat is missing X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=525207cd77adb181b4ef61d0b7669f52f737e9d0;p=qemu.git tests: mark io-command test as skipped if socat is missing Signed-off-by: Marc-André Lureau Reviewed-by: Daniel P. Berrangé Message-Id: <20220901110414.2892954-1-marcandre.lureau@redhat.com> Signed-off-by: Thomas Huth --- diff --git a/tests/unit/test-io-channel-command.c b/tests/unit/test-io-channel-command.c index 99056e07c0..aa09c559cd 100644 --- a/tests/unit/test-io-channel-command.c +++ b/tests/unit/test-io-channel-command.c @@ -41,7 +41,8 @@ static void test_io_channel_command_fifo(bool async) unlink(TEST_FIFO); if (access("/bin/socat", X_OK) < 0) { - return; /* Pretend success if socat is not present */ + g_test_skip("socat is missing"); + return; } if (mkfifo(TEST_FIFO, 0600) < 0) { abort();