diff --git a/tests/dump.cpp b/tests/dump.cpp index 0382c6a180..7c998ddcd6 100644 --- a/tests/dump.cpp +++ b/tests/dump.cpp @@ -5,6 +5,8 @@ #include #include +// AppleClang 13.0 on MacOS 11.0 crashes (segfault) when compiling any of these tests +#if !(defined(__APPLE__) && __clang_major__ == 13 && __clang_minor__ == 0) namespace { llama::ArrayExtentsDynamic<1> extents{32}; @@ -285,3 +287,4 @@ TEST_CASE("dump.ParticleAligned.PackedAoS") { dump(llama::mapping::PackedAoS{extents}); } +#endif