From c2185c26da766f0c42de5b7c0c4004ea078997e0 Mon Sep 17 00:00:00 2001 From: Dan Liew Date: Fri, 17 Jan 2020 18:02:37 -0800 Subject: [PATCH] Re-enable `asan_recover.swift` test on Darwin because it should work correctly there. To do this just disable on Linux where the test is currently broken. rdar://problem/58640751 --- test/Sanitizers/asan_recover.swift | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/test/Sanitizers/asan_recover.swift b/test/Sanitizers/asan_recover.swift index a320a9c9ccf4d..50191fbb1c56f 100644 --- a/test/Sanitizers/asan_recover.swift +++ b/test/Sanitizers/asan_recover.swift @@ -2,7 +2,8 @@ // REQUIRES: asan_runtime // UNSUPPORTED: windows -// REQUIRES: rdar58640751 +// TODO(rdar://problem/58702902) Re-enable on Linux once rdar://problem/58640751 is fixed. +// UNSUPPORTED: OS=linux-gnu // Check with recovery instrumentation and runtime option to continue execution. // RUN: %target-swiftc_driver %s -target %sanitizers-target-triple -g -sanitize=address -sanitize-recover=address -import-objc-header %S/asan_interface.h -emit-ir -o %t.asan_recover.ll