summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSimon McVittie <smcv@collabora.com>2023-05-12 15:31:58 +0100
committerSimon McVittie <smcv@collabora.com>2023-05-12 15:40:45 +0100
commita6da40b2066a783ed8a1f6a48e67671797aa825c (patch)
tree45f0f5811a8a4b87845db627090d99baae64f999
parent66a4119fb9ffbfc4c114baf08928962be35f03b9 (diff)
downloaddbus-a6da40b2066a783ed8a1f6a48e67671797aa825c.tar.gz
CI: Disable OOM-testing code paths for Meson, matching Autotools and CMake
Repeatedly re-running each test with different malloc() calls failing is really slow, and in particular this is making dbus:dbus / marshal-recursive time out on freedesktop.org CI. Signed-off-by: Simon McVittie <smcv@collabora.com>
-rwxr-xr-xtools/ci-build.sh4
1 files changed, 4 insertions, 0 deletions
diff --git a/tools/ci-build.sh b/tools/ci-build.sh
index df22b8ba..4115a593 100755
--- a/tools/ci-build.sh
+++ b/tools/ci-build.sh
@@ -558,6 +558,10 @@ case "$ci_buildsys" in
$meson_setup "$@" "$srcdir"
meson compile -v
+
+ # This is too slow and verbose to keep enabled at the moment
+ export DBUS_TEST_MALLOC_FAILURES=0
+
[ "$ci_test" = no ] || meson test --print-errorlogs
DESTDIR=DESTDIR meson install
( cd DESTDIR && find . -ls)