From 7e0c1aab1a270dd7c27f0284f7aa7071defb2e1d Mon Sep 17 00:00:00 2001 From: Andrea Terzolo Date: Mon, 11 Nov 2024 11:08:08 +0100 Subject: [PATCH] ci: disable a flaky test Signed-off-by: Andrea Terzolo --- userspace/libsinsp/test/async_key_value_source.ut.cpp | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/userspace/libsinsp/test/async_key_value_source.ut.cpp b/userspace/libsinsp/test/async_key_value_source.ut.cpp index 52eb35edae..58448a8841 100644 --- a/userspace/libsinsp/test/async_key_value_source.ut.cpp +++ b/userspace/libsinsp/test/async_key_value_source.ut.cpp @@ -335,8 +335,15 @@ TEST(async_key_value_source_test, look_key_delayed_async_callback) { /** * Ensure that "old" results are pruned + * This test usually fails like this when runned with sanitizers: + * + * pure virtual method called + * terminate called without an active exception + * Aborted (core dumped) + * + * Disabled until we can figure out how to fix it. */ -TEST(async_key_value_source_test, prune_old_metadata) { +TEST(async_key_value_source_test, DISABLED_prune_old_metadata) { const uint64_t DELAY_MS = 0; const uint64_t TTL_MS = 20;