-
Notifications
You must be signed in to change notification settings - Fork 10.5k
[android][test] Fix several tests on the Android CI #59279
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
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,8 +7,6 @@ | |
// REQUIRES: concurrency | ||
// REQUIRES: objc_interop | ||
// REQUIRES: tsan_runtime | ||
// UNSUPPORTED: OS=linux-gnu | ||
// UNSUPPORTED: OS=windows-msvc | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Since this test requires |
||
|
||
// rdar://76038845 | ||
// UNSUPPORTED: use_os_stdlib | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
// RUN: %target-typecheck-verify-swift | ||
|
||
// FIXME: No simd module on linux rdar://problem/20795411 | ||
// XFAIL: OS=linux-gnu, OS=windows-msvc, OS=openbsd | ||
// XFAIL: OS=linux-gnu, OS=windows-msvc, OS=openbsd, OS=linux-android, OS=linux-androideabi | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Strangely, this test passes when the toolchain is built and run natively on Android but not when cross-compiling, not sure what's going on. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. And now it fails natively too. 🤷 |
||
// XFAIL: OS=wasi | ||
|
||
import simd | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Not needed because of the
REQUIRES: OS=macosx
line above?