mirror of
https://github.com/zachjs/sv2v.git
synced 2026-08-31 01:34:16 +02:00
- error suite runs in both regular and verbose mode - add helper for extracting "flags" from test files - common assertMatch, assertNotMatch helpers - remove unused assertExists helper - fix un-escaped wildcard in assert_deferred_nonzero.sv
5 lines
140 B
Systemverilog
5 lines
140 B
Systemverilog
// pattern: assert_deferred_nonzero\.sv:3:21: Parse error: expected 0 after #, but found 1
|
|
module top;
|
|
initial assert #1 (1);
|
|
endmodule
|