File tree Expand file tree Collapse file tree 1 file changed +7
-0
lines changed Expand file tree Collapse file tree 1 file changed +7
-0
lines changed Original file line number Diff line number Diff line change @@ -526,6 +526,8 @@ option(asan "Build with address santitizer enabled.")
526526if (asan)
527527 set (ASAN_FLAGS "-fno-omit-frame-pointer -fsanitize=address" )
528528 set (RR_FLAGS "${ASAN_FLAGS} ${RR_FLAGS} " )
529+ list (APPEND DISABLED_TESTS nested_detach-no -syscallbuf)
530+ list (APPEND DISABLED_TESTS nested_detach-32-no -syscallbuf)
529531endif ()
530532
531533set_source_files_properties (${RR_SOURCES}
@@ -1552,6 +1554,11 @@ if(BUILD_TESTS)
15521554 endfunction (configure_test)
15531555
15541556 function (rr_add_test test command testname syscallbuf bin_dir timeout )
1557+ list (FIND DISABLED_TESTS "${test} " _index)
1558+ if (${_index} GREATER -1)
1559+ message ("Test disabled: ${test} " )
1560+ return ()
1561+ endif ()
15551562 add_test ("${test} " "bash" "${command} " "${testname} " "${syscallbuf} " "${bin_dir} " "${timeout} " )
15561563 configure_test(${test} )
15571564 endfunction (rr_add_test)
You can’t perform that action at this time.
0 commit comments