2020-06-08 07:09:44 +00:00
|
|
|
use crate::common::util::*;
|
|
|
|
extern crate regex;
|
|
|
|
use self::regex::Regex;
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_normal() {
|
|
|
|
let re = Regex::new(r"^[0-9a-f]{8}").unwrap();
|
2021-04-17 23:28:06 +00:00
|
|
|
new_ucmd!().succeeds().stdout_matches(&re);
|
2020-06-08 07:09:44 +00:00
|
|
|
}
|