Skip to content

Commit 09b0533

Browse files
authored
Rollup merge of rust-lang#137794 - tshepang:make-qnx-pass, r=pietroalbini
make qnx pass a test [tests/ui/attributes/used_with_archive.rs](https://github.com/rust-lang/rust/blob/b2024300840c3ef94a97273531bdb37d56d50fb5/tests/ui/attributes/used_with_archive.rs) fails when executed for QNX targets, because its stdout does not match [this content](https://github.com/rust-lang/rust/blob/b2024300840c3ef94a97273531bdb37d56d50fb5/tests/ui/attributes/used_with_archive.run.stdout)
2 parents 44e29fd + f8091c4 commit 09b0533

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

Diff for: tests/ui/attributes/auxiliary/used_pre_main_constructor.rs

+5-4
Original file line numberDiff line numberDiff line change
@@ -10,14 +10,15 @@
1010

1111
#[cfg_attr(
1212
any(
13-
target_os = "linux",
1413
target_os = "android",
14+
target_os = "dragonfly",
1515
target_os = "freebsd",
16+
target_os = "haiku",
17+
target_os = "illumos",
18+
target_os = "linux",
1619
target_os = "netbsd",
20+
target_os = "nto",
1721
target_os = "openbsd",
18-
target_os = "dragonfly",
19-
target_os = "illumos",
20-
target_os = "haiku"
2122
),
2223
link_section = ".init_array"
2324
)]

0 commit comments

Comments
 (0)