Skip to content

Commit 42deb13

Browse files
wonyong kimejjeong
authored andcommitted
---
yaml --- r: 181071 b: refs/heads/master c: fbe78e4 h: refs/heads/master i: 181069: 0a0942d 181067: 1e967df 181063: 7251456 181055: 1140d00 v: v3
1 parent 05e594f commit 42deb13

12 files changed

+4
-13
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
refs/heads/master: b1af8648a7697172fc10c50e9e79bed6689d4f5d
2+
refs/heads/master: fbe78e46eb4a4d7118f96f93b35a3e846f064036
33
refs/heads/snap-stage1: e33de59e47c5076a89eadeb38f4934f58a3618a6
44
refs/heads/snap-stage3: f1bb6c2f46f08c1d7b6d695f5b3cf93142cb8860
55
refs/heads/try: ccf8fedf1cffcb8f6f3581d53d220039e192fe77

trunk/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

trunk/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;

trunk/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;

trunk/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)]

trunk/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

trunk/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)]

trunk/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

trunk/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

trunk/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

trunk/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

trunk/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
#![feature(intrinsics, lang_items, start, 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)