diff options
author | Alex Bennée <alex.bennee@linaro.org> | 2022-08-02 10:50:03 +0100 |
---|---|---|
committer | Michael S. Tsirkin <mst@redhat.com> | 2022-10-07 09:41:51 -0400 |
commit | ebaa07083b57aab2d2dabf86d9bf172f43bad7a6 (patch) | |
tree | 178bd8f55a430b7c1499575cc8d4ac55a3f61aaf /tests | |
parent | bbd971153745ca2aa9a26b7d6370374ef559a328 (diff) | |
download | qemu-ebaa07083b57aab2d2dabf86d9bf172f43bad7a6.zip qemu-ebaa07083b57aab2d2dabf86d9bf172f43bad7a6.tar.gz qemu-ebaa07083b57aab2d2dabf86d9bf172f43bad7a6.tar.bz2 |
tests/qtest: add a timeout for subprocess_run_one_test
Hangs have been observed in the tests and currently we don't timeout
if a subprocess hangs. Rectify that.
Signed-off-by: Alex Bennée <alex.bennee@linaro.org>
Reviewed-by: Thomas Huth <thuth@redhat.com>
Message-Id: <20220802095010.3330793-16-alex.bennee@linaro.org>
Reviewed-by: Michael S. Tsirkin <mst@redhat.com>
Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
Reviewed-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
Diffstat (limited to 'tests')
-rw-r--r-- | tests/qtest/qos-test.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/qtest/qos-test.c b/tests/qtest/qos-test.c index 33cdada..566cb3b 100644 --- a/tests/qtest/qos-test.c +++ b/tests/qtest/qos-test.c @@ -185,7 +185,7 @@ static void run_one_test(const void *arg) static void subprocess_run_one_test(const void *arg) { const gchar *path = arg; - g_test_trap_subprocess(path, 0, + g_test_trap_subprocess(path, 180 * G_USEC_PER_SEC, G_TEST_SUBPROCESS_INHERIT_STDOUT | G_TEST_SUBPROCESS_INHERIT_STDERR); g_test_trap_assert_passed(); |