2015-11-16 05:25:01 +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.
|
|
|
|
//
|
|
|
|
|
|
|
|
use common::util::*;
|
|
|
|
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_op_prec_and_or_1() {
|
2016-08-23 11:52:43 +00:00
|
|
|
new_ucmd!()
|
2016-08-13 21:59:21 +00:00
|
|
|
.args(&[" ", "-o", "", "-a", ""])
|
|
|
|
.succeeds();
|
2015-11-16 05:25:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_op_prec_and_or_2() {
|
2016-08-23 11:52:43 +00:00
|
|
|
new_ucmd!()
|
2016-08-13 21:59:21 +00:00
|
|
|
.args(&["", "-a", "", "-o", " ", "-a", " "])
|
|
|
|
.succeeds();
|
2015-11-16 05:25:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_or_as_filename() {
|
2016-08-23 11:52:43 +00:00
|
|
|
new_ucmd!()
|
2016-08-13 21:59:21 +00:00
|
|
|
.args(&["x", "-a", "-z", "-o"])
|
|
|
|
.fails();
|
2015-11-16 05:25:01 +00:00
|
|
|
}
|