Allow comments in scope (fix typo)
This commit is contained in:
parent
1534924d05
commit
03705f263d
3 changed files with 301 additions and 4 deletions
|
@ -5,7 +5,7 @@
|
|||
|
||||
// TODO: we should eventually be able to only test on just
|
||||
// the files const
|
||||
pub const FILES : [&str; 30] = [
|
||||
pub const FILES : [&str; 31] = [
|
||||
"./tests/vcd-files/aldec/SPI_Write.vcd",
|
||||
"./tests/vcd-files/ghdl/alu.vcd",
|
||||
"./tests/vcd-files/ghdl/idea.vcd",
|
||||
|
@ -36,7 +36,8 @@ pub const FILES : [&str; 30] = [
|
|||
"./tests/vcd-files/xilinx_isim/test.vcd",
|
||||
"./tests/vcd-files/xilinx_isim/test1.vcd",
|
||||
// TODO : add signal ignore list to handle bitwidth mismatches
|
||||
"./tests/vcd-files/xilinx_isim/test2x2_regex22_string1.vcd"
|
||||
"./tests/vcd-files/xilinx_isim/test2x2_regex22_string1.vcd",
|
||||
"./tests/vcd-files/scope_with_comment.vcd",
|
||||
];
|
||||
|
||||
pub const GOOD_DATE_FILES : [&str; 24] = [
|
||||
|
@ -73,4 +74,4 @@ pub const BAD_DATE_FILES : [&str; 6] = [
|
|||
"./test-vcd-files/systemc/waveform.vcd",
|
||||
"./test-vcd-files/treadle/GCD.vcd",
|
||||
"./test-vcd-files/vivado/iladata.vcd",
|
||||
];
|
||||
];
|
||||
|
|
Reference in a new issue