mirror of
https://github.com/uutils/coreutils
synced 2024-11-16 09:48:03 +00:00
25 lines
743 B
Rust
25 lines
743 B
Rust
use crate::common::util::*;
|
|
use std::env;
|
|
|
|
#[test]
|
|
fn test_normal() {
|
|
let (_, mut ucmd) = at_and_ucmd!();
|
|
|
|
let result = ucmd.run();
|
|
println!("result.stdout = {}", result.stdout);
|
|
println!("result.stderr = {}", result.stderr);
|
|
println!("env::var(CI).is_ok() = {}", env::var("CI").is_ok());
|
|
|
|
for (key, value) in env::vars() {
|
|
println!("{}: {}", key, value);
|
|
}
|
|
if (is_ci() || is_wsl()) && result.stderr.contains("error: no login name") {
|
|
// ToDO: investigate WSL failure
|
|
// In the CI, some server are failing to return logname.
|
|
// As seems to be a configuration issue, ignoring it
|
|
return;
|
|
}
|
|
|
|
assert!(result.success);
|
|
assert!(!result.stdout.trim().is_empty());
|
|
}
|