Skip to content

Commit

Permalink
disable dump tests with AppleClang 13.0
Browse files Browse the repository at this point in the history
  • Loading branch information
bernhardmgruber committed Nov 11, 2021
1 parent 263b210 commit 293b0ec
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions tests/dump.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@
#include <llama/DumpMapping.hpp>
#include <string>

// 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};
Expand Down Expand Up @@ -285,3 +287,4 @@ TEST_CASE("dump.ParticleAligned.PackedAoS")
{
dump(llama::mapping::PackedAoS<ArrayExtents, ParticleAligned>{extents});
}
#endif

0 comments on commit 293b0ec

Please sign in to comment.