cirosantilli / vcdvcd

Python Verilog value change dump (VCD) parser library + the nifty vcdcat VCD command line pretty printer.
Other
56 stars 22 forks source link

vcdcat: don't select sub-string matches when using --exact #33

Closed whitty closed 11 months ago

whitty commented 11 months ago

When using --exact matching for a signal that is a common prefix of other signals the in check would match other signals:

Before:

$ ./vcdvcd/vcdcat -l -x bars-fix.vcd application.tft
application.tft_go
application.tft_go_set
application.tft

After:

$ ./vcdvcd/vcdcat -l -x bars-fix.vcd application.tft
application.tft
cirosantilli commented 11 months ago

Thanks :+1: