summary refs log tree commit diff
path: root/src/libstd/io/net/pipe.rs
AgeCommit message (Collapse)AuthorLines
2014-10-01Remove iotest macroAaron Turon-54/+86
This commit removes the `iotest!` macro from `std::io`. The macro was primarily used to ensure that all io-related tests were run on both libnative and libgreen/librustuv. However, now that the librustuv stack is being removed, the macro is no longer needed. See the [runtime removal RFC](https://github.com/rust-lang/rfcs/pull/230) for more context. [breaking-change]
2014-09-27auto merge of #17506 : sfackler/rust/cfg-attr, r=alexcrichtonbors-1/+1
cc #17490 Reopening of #16230
2014-09-25Ignore two I/O tests that are failing on the win32 botBrian Anderson-0/+1
2014-09-23Deprecate `#[ignore(cfg(...))]`Steven Fackler-1/+1
Replace `#[ignore(cfg(a, b))]` with `#[cfg_attr(all(a, b), ignore)]`
2014-09-16Rename std::io::net::unix to std::io::net::pipe.Jonas Hietala-0/+802
Renamed as we may support pipes for other platforms. Closes #12093 [breaking-change]