Skip to content

Commit

Permalink
chore(userspace/libsinsp): disable flaky test on arm64.
Browse files Browse the repository at this point in the history
Signed-off-by: Federico Di Pierro <[email protected]>
  • Loading branch information
FedeDP authored and poiana committed May 14, 2024
1 parent 43beb09 commit 2432f0d
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions userspace/libsinsp/test/mpsc_priority_queue.ut.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -116,6 +116,8 @@ TEST(mpsc_priority_queue, single_concurrent_producer)
ASSERT_EQ(failed, 0);
}

#if defined(__x86_64__)

TEST(mpsc_priority_queue, multi_concurrent_producers)
{
using val_t = std::unique_ptr<int>;
Expand Down Expand Up @@ -202,4 +204,6 @@ TEST(mpsc_priority_queue, multi_concurrent_producers)
ASSERT_EQ(failed, 0) << "received " << failed << " elements out of order";
}

#endif // __x86_64__

#endif // __EMSCRIPTEN__

0 comments on commit 2432f0d

Please sign in to comment.