|
| 1 | +// Copyright 2014 The Rust Project Developers. See the COPYRIGHT |
| 2 | +// file at the top-level directory of this distribution and at |
| 3 | +// http://rust-lang.org/COPYRIGHT. |
| 4 | +// |
| 5 | +// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or |
| 6 | +// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license |
| 7 | +// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your |
| 8 | +// option. This file may not be copied, modified, or distributed |
| 9 | +// except according to those terms. |
| 10 | + |
| 11 | +#![feature(phase)] |
| 12 | +extern crate native; |
| 13 | +#[phase(plugin)] |
| 14 | +extern crate green; |
| 15 | + |
| 16 | +use native::NativeTaskBuilder; |
| 17 | +use std::io::{TempDir, Command, fs}; |
| 18 | +use std::os; |
| 19 | +use std::task::TaskBuilder; |
| 20 | + |
| 21 | +// FIXME(#15149) libgreen still needs to be update. There is an open PR for it |
| 22 | +// but it is not yet merged. |
| 23 | +// green_start!(main) |
| 24 | + |
| 25 | +fn main() { |
| 26 | + // If we're the child, make sure we were invoked correctly |
| 27 | + let args = os::args(); |
| 28 | + if args.len() > 1 && args.get(1).as_slice() == "child" { |
| 29 | + return assert_eq!(args.get(0).as_slice(), "mytest"); |
| 30 | + } |
| 31 | + |
| 32 | + test(); |
| 33 | + let (tx, rx) = channel(); |
| 34 | + TaskBuilder::new().native().spawn(proc() { |
| 35 | + tx.send(test()); |
| 36 | + }); |
| 37 | + rx.recv(); |
| 38 | +} |
| 39 | + |
| 40 | +fn test() { |
| 41 | + // If we're the parent, copy our own binary to a tempr directory, and then |
| 42 | + // make it executable. |
| 43 | + let dir = TempDir::new("mytest").unwrap(); |
| 44 | + let me = os::self_exe_name().unwrap(); |
| 45 | + let dest = dir.path().join(format!("mytest{}", os::consts::EXE_SUFFIX)); |
| 46 | + fs::copy(&me, &dest).unwrap(); |
| 47 | + |
| 48 | + // Append the temp directory to our own PATH. |
| 49 | + let mut path = os::split_paths(os::getenv("PATH").unwrap_or(String::new())); |
| 50 | + path.push(dir.path().clone()); |
| 51 | + let path = os::join_paths(path.as_slice()).unwrap(); |
| 52 | + |
| 53 | + Command::new("mytest").env("PATH", path.as_slice()) |
| 54 | + .arg("child") |
| 55 | + .spawn().unwrap(); |
| 56 | +} |
0 commit comments