Skip to content

Commit 610c696

Browse files
committed
---
yaml --- r: 64607 b: refs/heads/snap-stage3 c: 73921f9 h: refs/heads/master i: 64605: afe25b0 64603: a3d7e31 64599: d177051 64591: 1b0d11f 64575: b4c75a9 v: v3
1 parent 9e5853c commit 610c696

35 files changed

+141
-6129
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
refs/heads/master: 2d28d645422c1617be58c8ca7ad9a457264ca850
33
refs/heads/snap-stage1: e33de59e47c5076a89eadeb38f4934f58a3618a6
4-
refs/heads/snap-stage3: 3169bb70d8bef4fea776916f900bf9e407e6469c
4+
refs/heads/snap-stage3: 73921f91a326e51118077ff3fd5c5c6196ff7c3a
55
refs/heads/try: 7b78b52e602bb3ea8174f9b2006bff3315f03ef9
66
refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105
77
refs/heads/ndm: f3868061cd7988080c30d6d5bf352a5a5fe2460b

branches/snap-stage3/src/compiletest/compiletest.rs

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -242,13 +242,13 @@ pub fn make_tests(config: &config) -> ~[test::TestDescAndFn] {
242242
let mut tests = ~[];
243243
let dirs = os::list_dir_path(&config.src_base);
244244
for dirs.iter().advance |file| {
245-
let file = (*file).clone();
245+
let file = file.clone();
246246
debug!("inspecting file %s", file.to_str());
247-
if is_test(config, file) {
248-
let t = do make_test(config, file) {
247+
if is_test(config, &file) {
248+
let t = do make_test(config, &file) {
249249
match config.mode {
250-
mode_codegen => make_metrics_test_closure(config, file),
251-
_ => make_test_closure(config, file)
250+
mode_codegen => make_metrics_test_closure(config, &file),
251+
_ => make_test_closure(config, &file)
252252
}
253253
};
254254
tests.push(t)

branches/snap-stage3/src/libextra/extra.rs

Lines changed: 1 addition & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -36,23 +36,9 @@ use std::str::{StrSlice, OwnedStr};
3636

3737
pub use std::os;
3838

39-
pub mod uv_ll;
40-
41-
// General io and system-services modules
42-
43-
#[path = "net/mod.rs"]
44-
pub mod net;
45-
46-
// libuv modules
47-
pub mod uv;
48-
pub mod uv_iotask;
49-
pub mod uv_global_loop;
50-
51-
5239
// Utility modules
5340

5441
pub mod c_vec;
55-
pub mod timer;
5642
pub mod io_util;
5743
pub mod rc;
5844

@@ -90,6 +76,7 @@ pub mod sha2;
9076

9177
// And ... other stuff
9278

79+
pub mod url;
9380
pub mod ebml;
9481
pub mod dbg;
9582
pub mod getopts;

branches/snap-stage3/src/libextra/flatpipes.rs

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -639,7 +639,6 @@ mod test {
639639
use flatpipes::serial;
640640
use io_util::BufReader;
641641
use flatpipes::{BytePort, FlatChan, FlatPort};
642-
use net::tcp::TcpSocketBuf;
643642

644643
use std::comm;
645644
use std::int;
@@ -728,7 +727,8 @@ mod test {
728727
}
729728

730729
// FIXME #2064: Networking doesn't work on x86
731-
#[test]
730+
// XXX Broken until networking support is added back
731+
/*#[test]
732732
#[cfg(target_arch = "x86_64")]
733733
fn test_pod_tcp_stream() {
734734
fn reader_port(buf: TcpSocketBuf
@@ -745,6 +745,7 @@ mod test {
745745
#[test]
746746
#[cfg(target_arch = "x86_64")]
747747
fn test_serializing_tcp_stream() {
748+
// XXX Broken until networking support is added back
748749
fn reader_port(buf: TcpSocketBuf
749750
) -> serial::ReaderPort<int, TcpSocketBuf> {
750751
serial::reader_port(buf)
@@ -860,7 +861,7 @@ mod test {
860861
}
861862
862863
finish_port.recv();
863-
}
864+
}*/
864865

865866
// Tests that the different backends behave the same when the
866867
// binary streaming protocol is broken

0 commit comments

Comments
 (0)