Enable some tests for android

This commit is contained in:
wonyong kim 2015-01-30 16:38:25 +09:00 committed by Eunji Jeong
parent b1af8648a7
commit fbe78e46eb
11 changed files with 3 additions and 12 deletions

View File

@ -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

View File

@ -10,7 +10,6 @@
// aux-build:macro_crate_test.rs
// ignore-stage1
// ignore-android
#[macro_use] #[no_link]
extern crate macro_crate_test;

View File

@ -10,7 +10,6 @@
// aux-build:macro_crate_test.rs
// ignore-stage1
// ignore-android
#[macro_use] #[no_link]
extern crate macro_crate_test;

View File

@ -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)]

View File

@ -9,7 +9,6 @@
// except according to those terms.
// ignore-stage1
// ignore-android
// aux-build:issue_16723_multiple_items_syntax_ext.rs
#![feature(plugin)]

View File

@ -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)]

View File

@ -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)]

View File

@ -9,7 +9,6 @@
// except according to those terms.
// ignore-windows
// ignore-android
// ignore-macos
// aux-build:linkage1.rs

View File

@ -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

View File

@ -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

View File

@ -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 { }