2014-06-24 14:10: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.
|
|
|
|
|
2015-01-15 14:49:23 -06:00
|
|
|
use std::io::{Command, fs, USER_RWX};
|
2014-06-24 14:10:31 -05:00
|
|
|
use std::os;
|
2015-01-22 19:34:58 -06:00
|
|
|
use std::path::BytesContainer;
|
|
|
|
use std::rand::random;
|
2014-06-24 14:10:31 -05:00
|
|
|
|
|
|
|
fn main() {
|
|
|
|
// If we're the child, make sure we were invoked correctly
|
|
|
|
let args = os::args();
|
2014-10-15 01:05:01 -05:00
|
|
|
if args.len() > 1 && args[1].as_slice() == "child" {
|
2015-01-22 12:54:45 -06:00
|
|
|
return assert_eq!(args[0],
|
|
|
|
format!("mytest{}", os::consts::EXE_SUFFIX));
|
2014-06-24 14:10:31 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
test();
|
|
|
|
}
|
|
|
|
|
|
|
|
fn test() {
|
2015-01-15 14:49:23 -06:00
|
|
|
// If we're the parent, copy our own binary to a new directory.
|
|
|
|
let my_path = os::self_exe_name().unwrap();
|
|
|
|
let my_dir = my_path.dir_path();
|
|
|
|
|
2015-01-22 19:34:58 -06:00
|
|
|
let random_u32: u32 = random();
|
|
|
|
let child_dir = Path::new(my_dir.join(format!("issue-15149-child-{}",
|
|
|
|
random_u32)));
|
|
|
|
fs::mkdir(&child_dir, USER_RWX).unwrap();
|
2015-01-15 14:49:23 -06:00
|
|
|
|
|
|
|
let child_path = child_dir.join(format!("mytest{}",
|
|
|
|
os::consts::EXE_SUFFIX));
|
|
|
|
fs::copy(&my_path, &child_path).unwrap();
|
|
|
|
|
|
|
|
// Append the new directory to our own PATH.
|
2014-06-24 14:10:31 -05:00
|
|
|
let mut path = os::split_paths(os::getenv("PATH").unwrap_or(String::new()));
|
2015-01-15 14:49:23 -06:00
|
|
|
path.push(child_dir.clone());
|
2014-06-24 14:10:31 -05:00
|
|
|
let path = os::join_paths(path.as_slice()).unwrap();
|
|
|
|
|
2015-01-22 12:54:45 -06:00
|
|
|
let child_output = Command::new("mytest").env("PATH", path.as_slice())
|
|
|
|
.arg("child")
|
|
|
|
.output().unwrap();
|
|
|
|
|
|
|
|
assert!(child_output.status.success(),
|
|
|
|
format!("child assertion failed\n child stdout:\n {}\n child stderr:\n {}",
|
|
|
|
child_output.output.container_as_str().unwrap(),
|
|
|
|
child_output.error.container_as_str().unwrap()));
|
2015-01-22 19:34:58 -06:00
|
|
|
|
|
|
|
fs::rmdir_recursive(&child_dir).unwrap();
|
|
|
|
|
2014-06-24 14:10:31 -05:00
|
|
|
}
|