Skip to content

[Sanitizer] Disable tests that depend on symbolication on watchOS #36638

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Mar 30, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions test/Sanitizers/symbolication.swift
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@
// REQUIRES: asan_runtime
// REQUIRES: VENDOR=apple

// rdar://75365575 (Failing to start atos external symbolizer)
// UNSUPPORTED: OS=watchos

// We copy the binary but not the corresponding .dSYM for remote runs (e.g.,
// on-device testing), and hence online symbolication fails.
// UNSUPPORTED: remote_run
Expand Down
3 changes: 3 additions & 0 deletions test/Sanitizers/tsan/racy_actor_counters.swift
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@
// REQUIRES: libdispatch
// REQUIRES: tsan_runtime

// rdar://75365575 (Failing to start atos external symbolizer)
// UNSUPPORTED: OS=watchos

var globalCounterValue = 0

actor Counter {
Expand Down
3 changes: 3 additions & 0 deletions test/Sanitizers/tsan/racy_async_let_fibonacci.swift
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@
// REQUIRES: libdispatch
// REQUIRES: tsan_runtime

// rdar://75365575 (Failing to start atos external symbolizer)
// UNSUPPORTED: OS=watchos

#if canImport(Darwin)
import Darwin
#elseif canImport(Glibc)
Expand Down