Skip to content
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
1 change: 1 addition & 0 deletions src/tools/compiletest/src/directives/directive_names.rs
Original file line number Diff line number Diff line change
Expand Up @@ -104,6 +104,7 @@ pub(crate) const KNOWN_DIRECTIVE_NAMES: &[&str] = &[
"ignore-nto",
"ignore-nvptx64",
"ignore-nvptx64-nvidia-cuda",
"ignore-ohos",
"ignore-openbsd",
"ignore-parallel-frontend",
"ignore-pauthtest",
Expand Down
1 change: 1 addition & 0 deletions tests/codegen-llvm/thread-local.rs
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
//@ ignore-android does not use #[thread_local]
//@ ignore-nto does not use #[thread_local]
//@ ignore-qnx does not use #[thread_local]
//@ ignore-ohos does not use #[thread_local]

@adwinwhite adwinwhite Aug 11, 2026

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The target spec says has_thread_local=false

View changes since the review


#![crate_type = "lib"]

Expand Down
1 change: 1 addition & 0 deletions tests/debuginfo/pretty-huge-vec.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
//@ ignore-windows-gnu: #128981
//@ ignore-android: FIXME(#10381)
//@ ignore-ohos: similiar to android
//@ ignore-aix: FIXME(#137965)
//@ compile-flags:-g
//@ ignore-backends: gcc
Expand Down
1 change: 1 addition & 0 deletions tests/ui/asm/aarch64/sym.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
//@ only-aarch64
//@ only-linux
//@ ignore-ohos does not use #[thread_local]
//@ needs-asm-support
//@ run-pass

Expand Down
1 change: 1 addition & 0 deletions tests/ui/runtime/out-of-stack.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
//@ ignore-android: FIXME (#20004)
//@ needs-subprocess
//@ ignore-fuchsia must translate zircon signal to SIGABRT, FIXME (#58590)
//@ ignore-ohos musl libc returns SIGSEGV for stack overflow rather than SIGABRT
//@ ignore-nto no stack overflow handler used (no alternate stack available)
//@ ignore-qnx no stack overflow handler used (no alternate stack available)
//@ ignore-ios stack overflow handlers aren't enabled
Expand Down
Loading