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.
|
|
|
|
//
|
|
|
|
|
2020-05-25 17:05:26 +00:00
|
|
|
use crate::common::util::*;
|
2015-11-16 05:25:01 +00:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_op_prec_and_or_1() {
|
2020-04-13 18:36:03 +00:00
|
|
|
new_ucmd!().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() {
|
2020-04-13 18:36:03 +00:00
|
|
|
new_ucmd!().args(&["x", "-a", "-z", "-o"]).fails();
|
2015-11-16 05:25:01 +00:00
|
|
|
}
|