File tree Expand file tree Collapse file tree 4 files changed +27
-2
lines changed
branches/try2/src/test/run-pass Expand file tree Collapse file tree 4 files changed +27
-2
lines changed Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ refs/heads/snap-stage3: 78a7676898d9f80ab540c6df5d4c9ce35bb50463
5
5
refs/heads/try: 519addf6277dbafccbb4159db4b710c37eaa2ec5
6
6
refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105
7
7
refs/heads/ndm: f3868061cd7988080c30d6d5bf352a5a5fe2460b
8
- refs/heads/try2: 133200a6e293f6e74b14ddb6334fab11b13e0f46
8
+ refs/heads/try2: d3309eb4325cbe85b54554c5d35ca3d6865c3976
9
9
refs/heads/dist-snap: ba4081a5a8573875fed17545846f6f6902c8ba8d
10
10
refs/tags/release-0.2: c870d2dffb391e14efb05aa27898f1f6333a9596
11
11
refs/tags/release-0.3: b5f0d0f648d9a6153664837026ba1be43d3e2503
Original file line number Diff line number Diff line change 11
11
//xfail-fast
12
12
13
13
#[ start]
14
+ #[ cfg( stage0) ]
14
15
fn start ( _argc : int , _argv : * * u8 , _crate_map : * u8 ) -> int {
15
16
return 0 ;
16
17
}
18
+ #[ start]
19
+ #[ cfg( not( stage0) ) ]
20
+ fn start ( _argc : int , _argv : * * u8 ) -> int {
21
+ return 0 ;
22
+ }
Original file line number Diff line number Diff line change 13
13
// A simple test of starting the runtime manually
14
14
15
15
#[ start]
16
+ #[ cfg( stage0) ]
16
17
fn start ( argc : int , argv : * * u8 , crate_map : * u8 ) -> int {
17
18
do std:: rt:: start ( argc, argv, crate_map) {
18
19
info ! ( "creating my own runtime is joy" ) ;
19
20
}
20
21
}
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
+ }
Original file line number Diff line number Diff line change 11
11
// xfail-fast
12
12
13
13
#[ start]
14
+ #[ cfg( stage0) ]
14
15
fn start ( argc : int , argv : * * u8 , crate_map : * u8 ) -> int {
15
16
do std:: rt:: start_on_main_thread ( argc, argv, crate_map) {
16
17
info ! ( "running on main thread" ) ;
17
18
do spawn {
18
19
info!( "running on another thread" ) ;
19
20
}
20
21
}
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
+ }
You can’t perform that action at this time.
0 commit comments