Skip to content

Commit

Permalink
Tests: disable failing UnexpectedException test on ARM architectures
Browse files Browse the repository at this point in the history
  • Loading branch information
triplef committed Aug 24, 2023
1 parent 3b6b960 commit 226455b
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion Test/CMakeLists.txt
Expand Up @@ -34,7 +34,6 @@ set(TESTS
ResurrectInDealloc_arc.m
RuntimeTest.m
SuperMethodMissing.m
UnexpectedException.m
WeakBlock_arc.m
WeakRefLoad.m
WeakReferences_arc.m
Expand Down Expand Up @@ -80,6 +79,11 @@ if (ENABLE_ALL_OBJC_ARC_TESTS)
)
endif()

# UnexpectedException test currently fails on ARM and needs to be fixed
if (NOT CMAKE_SYSTEM_PROCESSOR MATCHES "^(arm|aarch64)")
list(APPEND TESTS UnexpectedException.m)
endif ()

# List of single-file tests that won't work with the legacy ABI and so
# shouldn't be run in legacy mode.
set(NEW_TESTS
Expand Down

1 comment on commit 226455b

@triplef
Copy link
Member Author

@triplef triplef commented on 226455b Oct 4, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Issue #247.

Please sign in to comment.