File tree Expand file tree Collapse file tree 7 files changed +4
-7
lines changed Expand file tree Collapse file tree 7 files changed +4
-7
lines changed Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ refs/tags/release-0.3: b5f0d0f648d9a6153664837026ba1be43d3e2503
10
10
refs/tags/release-0.3.1: 495bae036dfe5ec6ceafd3312b4dca48741e845b
11
11
refs/tags/release-0.4: e828ea2080499553b97dfe33b3f4d472b4562ad7
12
12
refs/tags/release-0.5: 7e3bcfbf21278251ee936ad53e92e9b719702d73
13
- refs/heads/auto: 253992eb38569f7f80cc59537013b3d9d58aede6
13
+ refs/heads/auto: c5c3de0cf4efba1517009ee6ef2da66f03b490b9
14
14
refs/heads/servo: af82457af293e2a842ba6b7759b70288da276167
15
15
refs/tags/release-0.6: b4ebcfa1812664df5e142f0134a5faea3918544c
16
16
refs/tags/0.1: b19db808c2793fe2976759b85a355c3ad8c8b336
Original file line number Diff line number Diff line change 36
36
#![ feature( collections) ]
37
37
#![ feature( core) ]
38
38
#![ feature( old_fs) ]
39
- #![ feature( hash) ]
40
39
#![ feature( int_uint) ]
41
40
#![ feature( io) ]
42
41
#![ feature( old_io) ]
Original file line number Diff line number Diff line change 40
40
#![ feature( unicode) ]
41
41
#![ feature( path_ext) ]
42
42
#![ feature( fs) ]
43
- #![ feature( hash) ]
44
43
#![ feature( convert) ]
45
44
#![ feature( path_relative_from) ]
46
45
Original file line number Diff line number Diff line change @@ -834,7 +834,7 @@ mod tests {
834
834
fn split_paths_windows ( ) {
835
835
fn check_parse ( unparsed : & str , parsed : & [ & str ] ) -> bool {
836
836
split_paths ( unparsed) . collect :: < Vec < _ > > ( ) ==
837
- parsed. iter ( ) . map ( |s| PathBuf :: new ( * s) ) . collect :: < Vec < _ > > ( )
837
+ parsed. iter ( ) . map ( |s| PathBuf :: from ( * s) ) . collect :: < Vec < _ > > ( )
838
838
}
839
839
840
840
assert ! ( check_parse( "" , & mut [ "" ] ) ) ;
Original file line number Diff line number Diff line change 111
111
#![ feature( box_syntax) ]
112
112
#![ feature( collections) ]
113
113
#![ feature( core) ]
114
- #![ feature( hash) ]
115
114
#![ feature( lang_items) ]
116
115
#![ feature( libc) ]
117
116
#![ feature( linkage, thread_local, asm) ]
124
123
#![ feature( unsafe_destructor) ]
125
124
#![ feature( unsafe_no_drop_flag) ]
126
125
#![ feature( macro_reexport) ]
127
- #![ feature( hash) ]
128
126
#![ feature( int_uint) ]
129
127
#![ feature( unique) ]
130
128
#![ feature( convert) ]
Original file line number Diff line number Diff line change 126
126
// lldb-command:continue
127
127
128
128
#![ allow( unused_variables) ]
129
+ #![ feature( old_io) ]
129
130
#![ omit_gdb_pretty_printer_section]
130
131
131
132
fn immediate_args ( a : int , b : bool , c : f64 ) {
Original file line number Diff line number Diff line change 15
15
//ignore-dragonfly
16
16
//ignore-bitrig
17
17
18
- #![ feature( asm) ]
18
+ #![ feature( asm, old_io ) ]
19
19
20
20
use std:: old_io:: process:: Command ;
21
21
use std:: env;
You can’t perform that action at this time.
0 commit comments