Skip to content

Commit 9ae19d5

Browse files
committed
ASan: Remove tests failing with executed strex instructions detected.
Remove those tests for now. No Idea how that could be avoided? Error message: [FATAL src/PerfCounters.cc:785:read_ticks()] 1 (speculatively) executed strex instructions detected. Example: https://buildkite.com/julialang/rr/builds/1141 BUILDKITE_AGENT_NAME="default-armageddon.3"
1 parent 1380e15 commit 9ae19d5

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

CMakeLists.txt

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1642,6 +1642,16 @@ set(TESTS_WITHOUT_PROGRAM
16421642
when
16431643
)
16441644

1645+
if (asan)
1646+
if (${CMAKE_SYSTEM_PROCESSOR} STREQUAL "aarch64")
1647+
list(REMOVE_ITEM TESTS_WITH_PROGRAM "ignore_nested")
1648+
list(REMOVE_ITEM TESTS_WITHOUT_PROGRAM "nested_detach")
1649+
list(REMOVE_ITEM TESTS_WITH_PROGRAM "nested_detach_wait")
1650+
list(REMOVE_ITEM TESTS_WITHOUT_PROGRAM "nested_release")
1651+
list(REMOVE_ITEM TESTS_WITHOUT_PROGRAM "record_replay")
1652+
endif()
1653+
endif()
1654+
16451655
if(BUILD_TESTS)
16461656
# Part of the installable testsuite (test files).
16471657
if(INSTALL_TESTSUITE)

0 commit comments

Comments
 (0)