mirror of
https://github.com/supleed2/sv-filelist-parser.git
synced 2024-11-10 01:35:49 +00:00
34 lines
1.1 KiB
Rust
34 lines
1.1 KiB
Rust
use sv_filelist_parser;
|
|
use std::collections::HashMap;
|
|
use std::path::PathBuf;
|
|
|
|
#[test]
|
|
fn simple_test() {
|
|
let mut defines = HashMap::new();
|
|
defines.insert("a".to_string(), Some("bad".to_string()));
|
|
defines.insert("e".to_string(), Some("f".to_string()));
|
|
defines.insert("c".to_string(), Some("d".to_string()));
|
|
defines.insert("ENV_VAR1".to_string(), Some("var1".to_string()));
|
|
defines.insert("ENV_VAR2".to_string(), Some("var2".to_string()));
|
|
defines.insert("RTL".to_string(), None);
|
|
|
|
let filelist_exp = sv_filelist_parser::Filelist {
|
|
files : vec![
|
|
PathBuf::from("testcase/file1.sv"),
|
|
PathBuf::from("testcase/file2.sv"),
|
|
PathBuf::from("testcase/file3.sv"),
|
|
PathBuf::from("testcase/file4.sv"),
|
|
],
|
|
incdirs : vec![PathBuf::from("testcase/")],
|
|
defines : defines,
|
|
comments_present : true
|
|
};
|
|
|
|
// Add env vars
|
|
std::env::set_var("VAR1", "ENV_VAR1");
|
|
std::env::set_var("VAR2", "ENV_VAR2");
|
|
|
|
let filelist = sv_filelist_parser::parse("testcase/files.f")
|
|
.expect("Error parsing");
|
|
assert_eq!(filelist_exp, filelist);
|
|
} |