Skip to content

Commit 59498d2

Browse files
committed
Use i686-unknown-linux-gnu target
1 parent 5e66408 commit 59498d2

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tests/testsuite/doc.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -779,7 +779,7 @@ fn doc_target() {
779779

780780
#[cargo_test]
781781
fn doc_target_and_open() {
782-
const TARGET: &str = "arm-unknown-linux-gnueabihf";
782+
const TARGET: &str = "i686-unknown-linux-gnu";
783783

784784
let p = project()
785785
.file(
@@ -1355,7 +1355,7 @@ fn doc_workspace_open_first_one_built_for_host() {
13551355
[package]
13561356
name = "bar"
13571357
version = "0.1.0"
1358-
forced-target = "arm-unknown-linux-gnueabihf"
1358+
forced-target = "i686-unknown-linux-gnu"
13591359
"#,
13601360
)
13611361
.file("bar/src/lib.rs", "")
@@ -1373,7 +1373,7 @@ fn doc_workspace_open_first_one_built_for_host() {
13731373

13741374
#[cargo_test(nightly, reason = "-Zper-package-target is unstable")]
13751375
fn doc_workspace_open_first_one_when_no_one_built_for_host() {
1376-
const TARGET: &str = "arm-unknown-linux-gnueabihf";
1376+
const TARGET: &str = "i686-unknown-linux-gnu";
13771377

13781378
let p = project()
13791379
.file(

0 commit comments

Comments
 (0)