Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ci: disable a flaky test #2154

Merged
merged 1 commit into from
Nov 12, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions userspace/libsinsp/test/async_key_value_source.ut.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -335,7 +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 on arm64:
*
* pure virtual method called
* terminate called without an active exception
* Aborted (core dumped)
*
* Disabled until we can figure out how to fix it.
*/
#if !defined(__aarch64__)
TEST(async_key_value_source_test, prune_old_metadata) {
const uint64_t DELAY_MS = 0;
const uint64_t TTL_MS = 20;
Expand Down Expand Up @@ -372,6 +380,7 @@ TEST(async_key_value_source_test, prune_old_metadata) {
// fetch the first key should also return false.
ASSERT_FALSE(source.lookup(key1, response));
}
#endif

struct result {
uint64_t val = 0;
Expand Down
Loading