]> git.lizzy.rs Git - rust.git/blob - src/test/run-pass/issue-15149.rs
Merge pull request #20510 from tshepang/patch-6
[rust.git] / src / test / run-pass / issue-15149.rs
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 use std::io::{TempDir, Command, fs};
12 use std::os;
13
14 fn main() {
15     // If we're the child, make sure we were invoked correctly
16     let args = os::args();
17     if args.len() > 1 && args[1].as_slice() == "child" {
18         return assert_eq!(args[0].as_slice(), "mytest");
19     }
20
21     test();
22 }
23
24 fn test() {
25     // If we're the parent, copy our own binary to a tempr directory, and then
26     // make it executable.
27     let dir = TempDir::new("mytest").unwrap();
28     let me = os::self_exe_name().unwrap();
29     let dest = dir.path().join(format!("mytest{}", os::consts::EXE_SUFFIX));
30     fs::copy(&me, &dest).unwrap();
31
32     // Append the temp directory to our own PATH.
33     let mut path = os::split_paths(os::getenv("PATH").unwrap_or(String::new()));
34     path.push(dir.path().clone());
35     let path = os::join_paths(path.as_slice()).unwrap();
36
37     Command::new("mytest").env("PATH", path.as_slice())
38                           .arg("child")
39                           .spawn().unwrap();
40 }