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.
This commit is contained in:
bors 2017-08-05 05:08:12 +00:00
commit e8909d257b
6 changed files with 0 additions and 6 deletions

View File

@ -8,7 +8,6 @@
// option. This file may not be copied, modified, or distributed // option. This file may not be copied, modified, or distributed
// except according to those terms. // except according to those terms.
// ignore-aarch64
// ignore-emscripten no threads support // ignore-emscripten no threads support
#![feature(libc)] #![feature(libc)]

View File

@ -8,7 +8,6 @@
// option. This file may not be copied, modified, or distributed // option. This file may not be copied, modified, or distributed
// except according to those terms. // except according to those terms.
// ignore-aarch64
// ignore-emscripten // ignore-emscripten
#![feature(io, process_capture)] #![feature(io, process_capture)]

View File

@ -8,7 +8,6 @@
// option. This file may not be copied, modified, or distributed // option. This file may not be copied, modified, or distributed
// except according to those terms. // except according to those terms.
// ignore-aarch64
// ignore-emscripten // ignore-emscripten
use std::process::Command; use std::process::Command;

View File

@ -8,7 +8,6 @@
// option. This file may not be copied, modified, or distributed // option. This file may not be copied, modified, or distributed
// except according to those terms. // except according to those terms.
// ignore-aarch64
// ignore-emscripten // ignore-emscripten
#![feature(std_misc, os)] #![feature(std_misc, os)]

View File

@ -16,7 +16,6 @@
// non-ASCII characters. The child process ensures all the strings are // non-ASCII characters. The child process ensures all the strings are
// intact. // intact.
// ignore-aarch64
// ignore-emscripten // ignore-emscripten
use std::io::prelude::*; use std::io::prelude::*;

View File

@ -11,7 +11,6 @@
// Be sure that when a SIGPIPE would have been received that the entire process // Be sure that when a SIGPIPE would have been received that the entire process
// doesn't die in a ball of fire, but rather it's gracefully handled. // doesn't die in a ball of fire, but rather it's gracefully handled.
// ignore-aarch64
// ignore-emscripten // ignore-emscripten
use std::env; use std::env;