2023-08-21 08:49:27 +00:00
|
|
|
// This file is part of the uutils coreutils package.
|
|
|
|
//
|
|
|
|
// For the full copyright and license information, please view the LICENSE
|
|
|
|
// file that was distributed with this source code.
|
2023-03-20 13:51:19 +00:00
|
|
|
use crate::common::util::TestScenario;
|
2020-05-05 21:08:58 +00:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_arch() {
|
2021-04-05 20:03:43 +00:00
|
|
|
new_ucmd!().succeeds();
|
2020-05-05 21:08:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_arch_help() {
|
2021-04-05 20:03:43 +00:00
|
|
|
new_ucmd!()
|
|
|
|
.arg("--help")
|
|
|
|
.succeeds()
|
|
|
|
.stdout_contains("architecture name");
|
2020-05-05 21:08:58 +00:00
|
|
|
}
|
2022-09-10 16:38:14 +00:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_invalid_arg() {
|
|
|
|
new_ucmd!().arg("--definitely-invalid").fails().code_is(1);
|
|
|
|
}
|