blob: 897fc4aeb5cf97f1a4cdcc293455ad15a1ec8c40 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
use std::process::Command;
use log::{error, trace};
use crate::{bitness, uname::uname, Info, Type, Version};
pub fn current_platform() -> Info {
trace!("openbsd::current_platform is called");
let version = uname()
.map(Version::from_string)
.unwrap_or_else(|| Version::Unknown);
let info = Info {
os_type: Type::OpenBSD,
version,
bitness: bitness::get(),
..Default::default()
};
trace!("Returning {:?}", info);
info
}
#[cfg(test)]
mod tests {
use super::*;
use pretty_assertions::assert_eq;
#[test]
fn os_type() {
let version = current_platform();
assert_eq!(Type::OpenBSD, version.os_type());
}
}
|