diff --git a/test/Sanitizers/scudo.swift b/test/Sanitizers/scudo.swift index 41e01c35d74ed..f656306333828 100644 --- a/test/Sanitizers/scudo.swift +++ b/test/Sanitizers/scudo.swift @@ -2,6 +2,7 @@ // RUN: not %target-run %t_scudo-binary 2>&1 | %FileCheck %s // REQUIRES: executable_test // REQUIRES: OS=linux-gnu +// REQUIRES: scudo_runtime let allocated = UnsafeMutableRawPointer.allocate(byteCount: 128, alignment: 1) allocated.deallocate() diff --git a/test/lit.cfg b/test/lit.cfg index b77e33f282e97..7a820ec9f89b1 100644 --- a/test/lit.cfg +++ b/test/lit.cfg @@ -1452,6 +1452,7 @@ runtime_libs = { 'profile': 'profile_runtime', 'asan': 'asan_runtime', 'ubsan': 'ubsan_runtime', + 'scudo': 'scudo_runtime', 'safestack': 'safestack_runtime', 'fuzzer': 'fuzzer_runtime' }