From e39dff294b324ecc086e908f18568ac9e334e23c Mon Sep 17 00:00:00 2001 From: Aditya Vidyadhar Kamath Date: Fri, 4 Apr 2025 02:30:40 -0500 Subject: [PATCH] Skip mmap test case in AIX. In AIX the recent mmap feature is not implemented. So we can skip these test case. --- tests/test_mmap.cpp | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/tests/test_mmap.cpp b/tests/test_mmap.cpp index 800ffc2e6c..78549d6878 100644 --- a/tests/test_mmap.cpp +++ b/tests/test_mmap.cpp @@ -60,6 +60,9 @@ std::vector make_binary_data( // on top of the existing File1 again TEST(TestMmap, mmap_flatcodes) { +#ifdef _AIX + GTEST_SKIP() << "Skipping test on AIX."; +#endif // generate data const size_t nt = 1000; const size_t nq = 10; @@ -161,6 +164,9 @@ TEST(TestMmap, mmap_flatcodes) { } TEST(TestMmap, mmap_binary_flatcodes) { +#ifdef _AIX + GTEST_SKIP() << "Skipping test on AIX."; +#endif // generate data const size_t nt = 1000; const size_t nq = 10;