Enable some tests for android
This commit is contained in:
parent
b1af8648a7
commit
fbe78e46eb
|
@ -10,7 +10,6 @@
|
|||
|
||||
// aux-build:macro_crate_test.rs
|
||||
// ignore-stage1
|
||||
// ignore-android
|
||||
// error-pattern: unknown start of token: \u{0}
|
||||
|
||||
// Issue #15750 and #15962 : this test is checking that the standard
|
||||
|
|
|
@ -10,7 +10,6 @@
|
|||
|
||||
// aux-build:macro_crate_test.rs
|
||||
// ignore-stage1
|
||||
// ignore-android
|
||||
|
||||
#[macro_use] #[no_link]
|
||||
extern crate macro_crate_test;
|
||||
|
|
|
@ -10,7 +10,6 @@
|
|||
|
||||
// aux-build:macro_crate_test.rs
|
||||
// ignore-stage1
|
||||
// ignore-android
|
||||
|
||||
#[macro_use] #[no_link]
|
||||
extern crate macro_crate_test;
|
||||
|
|
|
@ -10,7 +10,6 @@
|
|||
|
||||
// aux-build:macro_crate_MacroRulesTT.rs
|
||||
// ignore-stage1
|
||||
// ignore-android
|
||||
// error-pattern: plugin tried to register a new MacroRulesTT
|
||||
|
||||
#![feature(plugin)]
|
||||
|
|
|
@ -9,7 +9,6 @@
|
|||
// except according to those terms.
|
||||
|
||||
// ignore-stage1
|
||||
// ignore-android
|
||||
// aux-build:issue_16723_multiple_items_syntax_ext.rs
|
||||
#![feature(plugin)]
|
||||
|
||||
|
|
|
@ -8,7 +8,6 @@
|
|||
// option. This file may not be copied, modified, or distributed
|
||||
// except according to those terms.
|
||||
|
||||
// ignore-android (FIXME #11419)
|
||||
// exec-env:RUST_LOG=info
|
||||
|
||||
#![allow(unknown_features)]
|
||||
|
|
|
@ -8,7 +8,6 @@
|
|||
// option. This file may not be copied, modified, or distributed
|
||||
// except according to those terms.
|
||||
|
||||
// ignore-android seems to block forever
|
||||
|
||||
#![forbid(warnings)]
|
||||
|
||||
|
|
|
@ -9,7 +9,6 @@
|
|||
// except according to those terms.
|
||||
|
||||
// ignore-windows
|
||||
// ignore-android
|
||||
// ignore-macos
|
||||
// aux-build:linkage1.rs
|
||||
|
||||
|
|
|
@ -8,7 +8,6 @@
|
|||
// option. This file may not be copied, modified, or distributed
|
||||
// except according to those terms.
|
||||
|
||||
// ignore-android
|
||||
// ignore-windows
|
||||
// exec-env:RUST_LOG=debug
|
||||
|
||||
|
|
|
@ -11,7 +11,6 @@
|
|||
// Check that we can use `-C lto` when linking against libraries that were
|
||||
// separately compiled.
|
||||
|
||||
// ignore-android linker weridness (see #18800)
|
||||
// aux-build:sepcomp_lib.rs
|
||||
// compile-flags: -C lto
|
||||
// no-prefer-dynamic
|
||||
|
|
|
@ -8,8 +8,6 @@
|
|||
// option. This file may not be copied, modified, or distributed
|
||||
// except according to those terms.
|
||||
|
||||
// ignore-android
|
||||
|
||||
// Smallest "hello world" with a libc runtime
|
||||
|
||||
#![feature(intrinsics, lang_items, start, no_std)]
|
||||
|
@ -34,3 +32,6 @@ fn main(_: int, _: *const *const u8) -> int {
|
|||
return 0;
|
||||
}
|
||||
|
||||
#[cfg(target_os = "android")]
|
||||
#[link(name="gcc")]
|
||||
extern { }
|
||||
|
|
Loading…
Reference in New Issue