Skip to content

Commit 0ce5254

Browse files
wonyong kimejjeong
wonyong kim
authored andcommitted
Enable some tests for android
1 parent 186be1f commit 0ce5254

11 files changed

+3
-12
lines changed

src/test/compile-fail-fulldeps/macro-crate-cannot-read-embedded-ident.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@
1010

1111
// aux-build:macro_crate_test.rs
1212
// ignore-stage1
13-
// ignore-android
1413
// error-pattern: unknown start of token: \u{0}
1514

1615
// Issue #15750 and #15962 : this test is checking that the standard

src/test/compile-fail-fulldeps/macro-crate-doesnt-resolve.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@
1010

1111
// aux-build:macro_crate_test.rs
1212
// ignore-stage1
13-
// ignore-android
1413

1514
#[macro_use] #[no_link]
1615
extern crate macro_crate_test;

src/test/compile-fail-fulldeps/macro-crate-unexported-macro.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@
1010

1111
// aux-build:macro_crate_test.rs
1212
// ignore-stage1
13-
// ignore-android
1413

1514
#[macro_use] #[no_link]
1615
extern crate macro_crate_test;

src/test/compile-fail-fulldeps/plugin-MacroRulesTT.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@
1010

1111
// aux-build:macro_crate_MacroRulesTT.rs
1212
// ignore-stage1
13-
// ignore-android
1413
// error-pattern: plugin tried to register a new MacroRulesTT
1514

1615
#![feature(plugin)]

src/test/run-pass-fulldeps/issue_16723_multiple_items_syntax_ext.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@
99
// except according to those terms.
1010

1111
// ignore-stage1
12-
// ignore-android
1312
// aux-build:issue_16723_multiple_items_syntax_ext.rs
1413
#![feature(plugin)]
1514

src/test/run-pass/capturing-logging.rs

Lines changed: 0 additions & 1 deletion
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-android (FIXME #11419)
1211
// exec-env:RUST_LOG=info
1312

1413
#![allow(unknown_features)]

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

Lines changed: 0 additions & 1 deletion
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-android seems to block forever
1211

1312
#![forbid(warnings)]
1413

src/test/run-pass/linkage1.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@
99
// except according to those terms.
1010

1111
// ignore-windows
12-
// ignore-android
1312
// ignore-macos
1413
// aux-build:linkage1.rs
1514

src/test/run-pass/logging-separate-lines.rs

Lines changed: 0 additions & 1 deletion
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-android
1211
// ignore-windows
1312
// exec-env:RUST_LOG=debug
1413

src/test/run-pass/sepcomp-lib-lto.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@
1111
// Check that we can use `-C lto` when linking against libraries that were
1212
// separately compiled.
1313

14-
// ignore-android linker weridness (see #18800)
1514
// aux-build:sepcomp_lib.rs
1615
// compile-flags: -C lto
1716
// no-prefer-dynamic

src/test/run-pass/smallest-hello-world.rs

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,6 @@
88
// option. This file may not be copied, modified, or distributed
99
// except according to those terms.
1010

11-
// ignore-android
12-
1311
// Smallest "hello world" with a libc runtime
1412

1513
#![no_std]
@@ -34,3 +32,6 @@ fn main(_: int, _: *const *const u8) -> int {
3432
return 0;
3533
}
3634

35+
#[cfg(target_os = "android")]
36+
#[link(name="gcc")]
37+
extern { }

0 commit comments

Comments
 (0)