Skip to content

Commit

Permalink
Disable tests failing on ARM
Browse files Browse the repository at this point in the history
  • Loading branch information
rinon committed Oct 3, 2024
1 parent 66e20d3 commit d0fefda
Showing 1 changed file with 12 additions and 11 deletions.
23 changes: 12 additions & 11 deletions tests/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,6 @@ endif()
set_target_properties(check PROPERTIES FOLDER "tests")

add_subdirectory(abi)
add_subdirectory(destructors)
# add_subdirectory(ffmpeg)
add_subdirectory(header_includes)
# add_subdirectory(libusb)
Expand All @@ -52,24 +51,26 @@ add_subdirectory(minimal_no_criterion)
# TODO: support C++ namespaces
#add_subdirectory(namespaces)
add_subdirectory(recursion)
add_subdirectory(ro_sharing)
# We don't actually compile the `omit_wrappers` test, but it is picked up by LIT.
add_subdirectory(shared_data)
add_subdirectory(should_segfault)
add_subdirectory(trusted_direct)
add_subdirectory(untrusted_indirect)
add_subdirectory(two_keys_minimal)
add_subdirectory(two_shared_ranges)
add_subdirectory(global_fn_ptr)
add_subdirectory(rewrite_macros)
add_subdirectory(sighandler)

# TODO(#413): Fix these tests
# add_subdirectory(heap_two_keys)
# add_subdirectory(three_keys_minimal)

# The following tests are not supported on ARM64 yet
if (NOT LIBIA2_AARCH64)
# Expected to have compartment violations, but we aren't enforcing yet:
add_subdirectory(destructors)
add_subdirectory(ro_sharing)
add_subdirectory(should_segfault)
add_subdirectory(trusted_direct)
add_subdirectory(untrusted_indirect)
add_subdirectory(two_keys_minimal)
add_subdirectory(two_shared_ranges)
# TODO(#413): Fix these tests
# add_subdirectory(heap_two_keys)
# add_subdirectory(three_keys_minimal)

# strange bug with indirect calls
add_subdirectory(read_config)
# ARM does not support threads yet
Expand Down

0 comments on commit d0fefda

Please sign in to comment.