File tree 1 file changed +7
-0
lines changed
1 file changed +7
-0
lines changed Original file line number Diff line number Diff line change @@ -528,6 +528,8 @@ option(asan "Build with address santitizer enabled.")
528
528
if (asan)
529
529
set (ASAN_FLAGS "-fno-omit-frame-pointer -fsanitize=address" )
530
530
set (RR_FLAGS "${ASAN_FLAGS} ${RR_FLAGS} " )
531
+ list (APPEND DISABLED_TESTS nested_detach-no -syscallbuf)
532
+ list (APPEND DISABLED_TESTS nested_detach-32-no -syscallbuf)
531
533
endif ()
532
534
533
535
set_source_files_properties (${RR_SOURCES}
@@ -1561,6 +1563,11 @@ if(BUILD_TESTS)
1561
1563
endfunction (configure_test)
1562
1564
1563
1565
function (rr_add_test test command testname syscallbuf bin_dir timeout )
1566
+ list (FIND DISABLED_TESTS "${test} " _index)
1567
+ if (${_index} GREATER -1)
1568
+ message ("Test disabled: ${test} " )
1569
+ return ()
1570
+ endif ()
1564
1571
add_test ("${test} " "bash" "${command} " "${testname} " "${syscallbuf} " "${bin_dir} " "${timeout} " )
1565
1572
configure_test(${test} )
1566
1573
endfunction (rr_add_test)
You can’t perform that action at this time.
0 commit comments