2014-04-07 03:11:31 -05:00
|
|
|
// Copyright 2014 The Rust Project Developers. See the COPYRIGHT
|
|
|
|
// file at the top-level directory of this distribution and at
|
|
|
|
// http://rust-lang.org/COPYRIGHT.
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
|
|
|
|
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
|
|
|
|
// option. This file may not be copied, modified, or distributed
|
|
|
|
// except according to those terms.
|
|
|
|
|
|
|
|
// ignore-fast
|
|
|
|
|
|
|
|
extern crate green;
|
|
|
|
extern crate rustuv;
|
|
|
|
extern crate native;
|
|
|
|
|
|
|
|
use std::os;
|
|
|
|
use std::io;
|
|
|
|
use std::str;
|
|
|
|
|
|
|
|
#[start]
|
2014-06-25 14:47:34 -05:00
|
|
|
fn start(argc: int, argv: *const *const u8) -> int {
|
2014-04-07 03:11:31 -05:00
|
|
|
green::start(argc, argv, rustuv::event_loop, main)
|
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
let args = os::args();
|
2014-05-04 15:20:47 -05:00
|
|
|
let args = args.as_slice();
|
2014-04-07 03:11:31 -05:00
|
|
|
if args.len() > 1 && args[1].as_slice() == "child" {
|
|
|
|
if args[2].as_slice() == "green" {
|
|
|
|
child();
|
|
|
|
} else {
|
|
|
|
let (tx, rx) = channel();
|
|
|
|
native::task::spawn(proc() { tx.send(child()); });
|
|
|
|
rx.recv();
|
|
|
|
}
|
|
|
|
} else {
|
2014-05-25 05:17:19 -05:00
|
|
|
parent("green".to_string());
|
|
|
|
parent("native".to_string());
|
2014-04-07 03:11:31 -05:00
|
|
|
let (tx, rx) = channel();
|
|
|
|
native::task::spawn(proc() {
|
2014-05-25 05:17:19 -05:00
|
|
|
parent("green".to_string());
|
|
|
|
parent("native".to_string());
|
2014-04-07 03:11:31 -05:00
|
|
|
tx.send(());
|
|
|
|
});
|
|
|
|
rx.recv();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-05-22 18:57:53 -05:00
|
|
|
fn parent(flavor: String) {
|
2014-04-07 03:11:31 -05:00
|
|
|
let args = os::args();
|
2014-05-04 15:20:47 -05:00
|
|
|
let args = args.as_slice();
|
2014-05-05 16:33:55 -05:00
|
|
|
let mut p = io::process::Command::new(args[0].as_slice())
|
|
|
|
.arg("child").arg(flavor).spawn().unwrap();
|
2014-04-07 03:11:31 -05:00
|
|
|
p.stdin.get_mut_ref().write_str("test1\ntest2\ntest3").unwrap();
|
2014-05-05 18:58:42 -05:00
|
|
|
let out = p.wait_with_output().unwrap();
|
2014-04-07 03:11:31 -05:00
|
|
|
assert!(out.status.success());
|
|
|
|
let s = str::from_utf8(out.output.as_slice()).unwrap();
|
|
|
|
assert_eq!(s, "test1\n\ntest2\n\ntest3\n");
|
|
|
|
}
|
|
|
|
|
|
|
|
fn child() {
|
|
|
|
for line in io::stdin().lines() {
|
|
|
|
println!("{}", line.unwrap());
|
|
|
|
}
|
|
|
|
}
|