Skip to content

Commit e8909d2

Browse files
committed
Auto merge of #43642 - mmatyas:unskip_aarch64_tests, r=sanxiyn
Unskip some tests on AArch64 I've been running the test suite remotely on an Acer Chromebook R13 and natively on an ARM Juno developer board, both AArch64 devices. Most of the tests that are skipped on AArch64 are due to testing stdcall/fastcall/x86-specific code or the debugger, but I've found a few tests that could be enabled there. These have been skipped previously due to failing on the `aarch64-linux-android` and `mac-android` buildbots, more than 2 years ago (#23471, #23695). It seems we don't test those platforms any more, but as they do work on AArch64 Linux, I'd like to propose re-enabling them. All of them pass on my devices.
2 parents 49ded7e + 28c423d commit e8909d2

6 files changed

+0
-6
lines changed

src/test/run-pass/foreign-call-no-runtime.rs

-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@
88
// option. This file may not be copied, modified, or distributed
99
// except according to those terms.
1010

11-
// ignore-aarch64
1211
// ignore-emscripten no threads support
1312

1413
#![feature(libc)]

src/test/run-pass/issue-13304.rs

-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@
88
// option. This file may not be copied, modified, or distributed
99
// except according to those terms.
1010

11-
// ignore-aarch64
1211
// ignore-emscripten
1312
#![feature(io, process_capture)]
1413

src/test/run-pass/issue-16272.rs

-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@
88
// option. This file may not be copied, modified, or distributed
99
// except according to those terms.
1010

11-
// ignore-aarch64
1211
// ignore-emscripten
1312

1413
use std::process::Command;

src/test/run-pass/issue-20091.rs

-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@
88
// option. This file may not be copied, modified, or distributed
99
// except according to those terms.
1010

11-
// ignore-aarch64
1211
// ignore-emscripten
1312
#![feature(std_misc, os)]
1413

src/test/run-pass/process-spawn-with-unicode-params.rs

-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@
1616
// non-ASCII characters. The child process ensures all the strings are
1717
// intact.
1818

19-
// ignore-aarch64
2019
// ignore-emscripten
2120

2221
use std::io::prelude::*;

src/test/run-pass/sigpipe-should-be-ignored.rs

-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@
1111
// Be sure that when a SIGPIPE would have been received that the entire process
1212
// doesn't die in a ball of fire, but rather it's gracefully handled.
1313

14-
// ignore-aarch64
1514
// ignore-emscripten
1615

1716
use std::env;

0 commit comments

Comments
 (0)