2020-06-07 15:41:48 +00:00
|
|
|
use crate::common::util::*;
|
|
|
|
use std::env;
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_normal() {
|
2021-04-05 20:03:43 +00:00
|
|
|
let result = new_ucmd!().run();
|
2020-06-07 15:41:48 +00:00
|
|
|
println!("env::var(CI).is_ok() = {}", env::var("CI").is_ok());
|
|
|
|
|
|
|
|
for (key, value) in env::vars() {
|
|
|
|
println!("{}: {}", key, value);
|
|
|
|
}
|
2021-05-25 23:45:53 +00:00
|
|
|
if (is_ci() || uucore::os::is_wsl_1()) && result.stderr_str().contains("no login name") {
|
2020-06-14 16:51:20 +00:00
|
|
|
// ToDO: investigate WSL failure
|
2020-06-07 15:41:48 +00:00
|
|
|
// In the CI, some server are failing to return logname.
|
|
|
|
// As seems to be a configuration issue, ignoring it
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2021-04-05 20:03:43 +00:00
|
|
|
result.success();
|
|
|
|
assert!(!result.stdout_str().trim().is_empty());
|
2020-06-07 15:41:48 +00:00
|
|
|
}
|