Skip to content

Commit b23be7a

Browse files
wonyong kimejjeong
authored andcommitted
---
yaml --- r: 181851 b: refs/heads/auto c: fbe78e4 h: refs/heads/master i: 181849: a5bb7b7 181847: 843ef1e v: v3
1 parent 99dc524 commit b23be7a

12 files changed

+4
-13
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ refs/tags/release-0.3: b5f0d0f648d9a6153664837026ba1be43d3e2503
1010
refs/tags/release-0.3.1: 495bae036dfe5ec6ceafd3312b4dca48741e845b
1111
refs/tags/release-0.4: e828ea2080499553b97dfe33b3f4d472b4562ad7
1212
refs/tags/release-0.5: 7e3bcfbf21278251ee936ad53e92e9b719702d73
13-
refs/heads/auto: b1af8648a7697172fc10c50e9e79bed6689d4f5d
13+
refs/heads/auto: fbe78e46eb4a4d7118f96f93b35a3e846f064036
1414
refs/heads/servo: af82457af293e2a842ba6b7759b70288da276167
1515
refs/tags/release-0.6: b4ebcfa1812664df5e142f0134a5faea3918544c
1616
refs/tags/0.1: b19db808c2793fe2976759b85a355c3ad8c8b336

branches/auto/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

branches/auto/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;

branches/auto/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;

branches/auto/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)]

branches/auto/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

branches/auto/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)]

branches/auto/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

branches/auto/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

branches/auto/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

branches/auto/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

branches/auto/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)