Skip to content

Commit

Permalink
Fix arm macro, __arm__ is only defined for 32 bit arm
Browse files Browse the repository at this point in the history
  • Loading branch information
dagardner-nv committed Dec 20, 2024
1 parent f3f7b59 commit 4c75f44
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cpp/mrc/src/tests/test_pipeline.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -510,7 +510,7 @@ TEST_F(TestPipeline, Nodes1k)

TEST_F(TestPipeline, EngineFactories)
{
#if defined(__arm__)
#if defined(__aarch64__)
GTEST_SKIP() << "Skipping test for arm architectures ref: https://github.com/nv-morpheus/MRC/issues/525";
#endif
auto topology = mrc::system::Topology::Create();
Expand Down

0 comments on commit 4c75f44

Please sign in to comment.