Skip to content

Commit

Permalink
Add legacy file reading test to ignore list for sanitizer builds
Browse files Browse the repository at this point in the history
  • Loading branch information
tmadlener committed May 31, 2023
1 parent 24b5e18 commit f16e54e
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions tests/CTestCustom.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,11 @@ if ((NOT "@FORCE_RUN_ALL_TESTS@" STREQUAL "ON") AND (NOT "@USE_SANITIZER@" STREQ
datamodel_def_store_roundtrip_sio_extension
)

foreach(version in @legacy_versions@)
list(APPEND CTEST_CUSTOM_TESTS_IGNORE read-legacy-files-root_${version})
list(APPEND CTEST_CUSTOM_TESTS_IGNORE read_frame_root_${version})
endforeach()

# ostream_operator is working with Memory sanitizer (at least locally)
if("@USE_SANITIZER@" MATCHES "Memory(WithOrigin)?")
list(REMOVE_ITEM CTEST_CUSTOM_TESTS_IGNORE ostream_operator)
Expand Down

0 comments on commit f16e54e

Please sign in to comment.