From: Alex Bennée Date: Thu, 29 Sep 2022 11:41:51 +0000 (+0100) Subject: tests/qtest: bump up QOS_PATH_MAX_ELEMENT_SIZE X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=100c459f1948b9367cea44c76d5c633b0d23f23b;p=qemu.git tests/qtest: bump up QOS_PATH_MAX_ELEMENT_SIZE It seems the depth of stack we need to support can vary depending on the order of the init constructors getting called. It seems --enable-lto shuffles things around just enough to push you over the limit. Signed-off-by: Alex Bennée Fixes: https://gitlab.com/qemu-project/qemu/-/issues/1186 Acked-by: Thomas Huth Acked-by: Paolo Bonzini Message-Id: <20220929114231.583801-12-alex.bennee@linaro.org> --- diff --git a/tests/qtest/libqos/qgraph.h b/tests/qtest/libqos/qgraph.h index 6e94824d09..5c0046e989 100644 --- a/tests/qtest/libqos/qgraph.h +++ b/tests/qtest/libqos/qgraph.h @@ -24,7 +24,7 @@ #include "libqos-malloc.h" /* maximum path length */ -#define QOS_PATH_MAX_ELEMENT_SIZE 50 +#define QOS_PATH_MAX_ELEMENT_SIZE 64 typedef struct QOSGraphObject QOSGraphObject; typedef struct QOSGraphNode QOSGraphNode;