Test fixes and rebase conflicts, round 3

This commit is contained in:
Alex Crichton 2015-03-23 17:29:51 -07:00
parent 253992eb38
commit c5c3de0cf4
6 changed files with 3 additions and 6 deletions

View file

@ -36,7 +36,6 @@
#![feature(collections)] #![feature(collections)]
#![feature(core)] #![feature(core)]
#![feature(old_fs)] #![feature(old_fs)]
#![feature(hash)]
#![feature(int_uint)] #![feature(int_uint)]
#![feature(io)] #![feature(io)]
#![feature(old_io)] #![feature(old_io)]

View file

@ -40,7 +40,6 @@
#![feature(unicode)] #![feature(unicode)]
#![feature(path_ext)] #![feature(path_ext)]
#![feature(fs)] #![feature(fs)]
#![feature(hash)]
#![feature(convert)] #![feature(convert)]
#![feature(path_relative_from)] #![feature(path_relative_from)]

View file

@ -834,7 +834,7 @@ mod tests {
fn split_paths_windows() { fn split_paths_windows() {
fn check_parse(unparsed: &str, parsed: &[&str]) -> bool { fn check_parse(unparsed: &str, parsed: &[&str]) -> bool {
split_paths(unparsed).collect::<Vec<_>>() == split_paths(unparsed).collect::<Vec<_>>() ==
parsed.iter().map(|s| PathBuf::new(*s)).collect::<Vec<_>>() parsed.iter().map(|s| PathBuf::from(*s)).collect::<Vec<_>>()
} }
assert!(check_parse("", &mut [""])); assert!(check_parse("", &mut [""]));

View file

@ -111,7 +111,6 @@
#![feature(box_syntax)] #![feature(box_syntax)]
#![feature(collections)] #![feature(collections)]
#![feature(core)] #![feature(core)]
#![feature(hash)]
#![feature(lang_items)] #![feature(lang_items)]
#![feature(libc)] #![feature(libc)]
#![feature(linkage, thread_local, asm)] #![feature(linkage, thread_local, asm)]
@ -124,7 +123,6 @@
#![feature(unsafe_destructor)] #![feature(unsafe_destructor)]
#![feature(unsafe_no_drop_flag)] #![feature(unsafe_no_drop_flag)]
#![feature(macro_reexport)] #![feature(macro_reexport)]
#![feature(hash)]
#![feature(int_uint)] #![feature(int_uint)]
#![feature(unique)] #![feature(unique)]
#![feature(convert)] #![feature(convert)]

View file

@ -126,6 +126,7 @@
// lldb-command:continue // lldb-command:continue
#![allow(unused_variables)] #![allow(unused_variables)]
#![feature(old_io)]
#![omit_gdb_pretty_printer_section] #![omit_gdb_pretty_printer_section]
fn immediate_args(a: int, b: bool, c: f64) { fn immediate_args(a: int, b: bool, c: f64) {

View file

@ -15,7 +15,7 @@
//ignore-dragonfly //ignore-dragonfly
//ignore-bitrig //ignore-bitrig
#![feature(asm)] #![feature(asm, old_io)]
use std::old_io::process::Command; use std::old_io::process::Command;
use std::env; use std::env;