Skip to content

Commit c5d4fc3

Browse files
committed
---
yaml --- r: 145371 b: refs/heads/try2 c: d3309eb h: refs/heads/master i: 145369: 77c0b78 145367: 7d1080a v: v3
1 parent 9f0bc45 commit c5d4fc3

File tree

4 files changed

+27
-2
lines changed

4 files changed

+27
-2
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ refs/heads/snap-stage3: 78a7676898d9f80ab540c6df5d4c9ce35bb50463
55
refs/heads/try: 519addf6277dbafccbb4159db4b710c37eaa2ec5
66
refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105
77
refs/heads/ndm: f3868061cd7988080c30d6d5bf352a5a5fe2460b
8-
refs/heads/try2: 133200a6e293f6e74b14ddb6334fab11b13e0f46
8+
refs/heads/try2: d3309eb4325cbe85b54554c5d35ca3d6865c3976
99
refs/heads/dist-snap: ba4081a5a8573875fed17545846f6f6902c8ba8d
1010
refs/tags/release-0.2: c870d2dffb391e14efb05aa27898f1f6333a9596
1111
refs/tags/release-0.3: b5f0d0f648d9a6153664837026ba1be43d3e2503

branches/try2/src/test/run-pass/attr-start.rs

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,12 @@
1111
//xfail-fast
1212

1313
#[start]
14+
#[cfg(stage0)]
1415
fn start(_argc: int, _argv: **u8, _crate_map: *u8) -> int {
1516
return 0;
1617
}
18+
#[start]
19+
#[cfg(not(stage0))]
20+
fn start(_argc: int, _argv: **u8) -> int {
21+
return 0;
22+
}

branches/try2/src/test/run-pass/core-rt-smoke.rs

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,16 @@
1313
// A simple test of starting the runtime manually
1414

1515
#[start]
16+
#[cfg(stage0)]
1617
fn start(argc: int, argv: **u8, crate_map: *u8) -> int {
1718
do std::rt::start(argc, argv, crate_map) {
1819
info!("creating my own runtime is joy");
1920
}
2021
}
22+
#[start]
23+
#[cfg(not(stage0))]
24+
fn start(argc: int, argv: **u8) -> int {
25+
do std::rt::start(argc, argv) {
26+
info!("creating my own runtime is joy");
27+
}
28+
}

branches/try2/src/test/run-pass/rt-start-main-thread.rs

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,22 @@
1111
// xfail-fast
1212

1313
#[start]
14+
#[cfg(stage0)]
1415
fn start(argc: int, argv: **u8, crate_map: *u8) -> int {
1516
do std::rt::start_on_main_thread(argc, argv, crate_map) {
1617
info!("running on main thread");
1718
do spawn {
1819
info!("running on another thread");
1920
}
2021
}
21-
}
22+
}
23+
#[start]
24+
#[cfg(not(stage0))]
25+
fn start(argc: int, argv: **u8) -> int {
26+
do std::rt::start_on_main_thread(argc, argv) {
27+
info!("running on main thread");
28+
do spawn {
29+
info!("running on another thread");
30+
}
31+
}
32+
}

0 commit comments

Comments
 (0)