2015-04-30 06:16:53 +00:00
|
|
|
/*
|
|
|
|
* This file is part of the uutils coreutils package.
|
|
|
|
*
|
|
|
|
* (c) mahkoh (ju.orth [at] gmail [dot] com)
|
|
|
|
*
|
|
|
|
* For the full copyright and license information, please view the LICENSE
|
|
|
|
* file that was distributed with this source code.
|
|
|
|
*/
|
2015-01-10 19:31:55 +00:00
|
|
|
|
2015-04-30 06:16:53 +00:00
|
|
|
use std::process::Command;
|
2014-10-21 05:04:17 +00:00
|
|
|
|
|
|
|
static EXE: &'static str = "./test";
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_op_prec_and_or_1() {
|
|
|
|
let status = Command::new(EXE).arg(" ").arg("-o").arg("").arg("-a").arg("").status();
|
|
|
|
assert_eq!(true, status.unwrap().success());
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_op_prec_and_or_2() {
|
|
|
|
let status = Command::new(EXE).arg("")
|
|
|
|
.arg("-a")
|
|
|
|
.arg("")
|
|
|
|
.arg("-o")
|
|
|
|
.arg(" ")
|
|
|
|
.arg("-a")
|
|
|
|
.arg(" ")
|
|
|
|
.status();
|
|
|
|
assert_eq!(true, status.unwrap().success());
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_or_as_filename() {
|
|
|
|
let status = Command::new(EXE).arg("x").arg("-a").arg("-z").arg("-o").status();
|
2015-04-30 06:16:53 +00:00
|
|
|
assert_eq!(status.unwrap().code(), Some(1));
|
2014-10-21 05:04:17 +00:00
|
|
|
}
|