We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 70dde68 commit d0e1591Copy full SHA for d0e1591
src/libcore/run.rs
@@ -287,7 +287,7 @@ fn program_output(prog: str, args: [str]) ->
287
// Spawn two entire schedulers to read both stdout and sterr
288
// in parallel so we don't deadlock while blocking on one
289
// or the other. FIXME: Surely there's a much more clever way
290
- // to do this.
+ // to do this. (#2625)
291
let p = comm::port();
292
let ch = comm::chan(p);
293
task::spawn_sched(task::single_threaded) {||
@@ -387,7 +387,7 @@ mod tests {
387
import io::writer_util;
388
389
// Regression test for memory leaks
390
- #[ignore(cfg(windows))] // FIXME
+ #[ignore(cfg(windows))] // FIXME (#2626)
391
fn test_leaks() {
392
run::run_program("echo", []);
393
run::start_program("echo", []);
0 commit comments