verilator/test_regress/t
Geza Lore bc892deacc
Safely support non-overlapping blocking/non-blocking assignments (#6137)
The manual for the BLKANDNBLK warning describes that it is safe to
disable that error if the updated ranges are non-overlapping. This
however was not true (see the added t_nba_mixed_update* tests).

In this patch we change V3Delayed to use a new ShadowVarMasked
scheme for variables that have mixed blocking and non-blocking 
updates (or the FlagUnique scheme for unpacked variables), which
is in fact safe to use when the updated parts are non-overlapping.

Furthermore, mixed assignments are safe as far as scheduling is
concerned if either:

- They are to independent parts (bits/members/etc) (with this patch)
- Or if the blocking assignment is in clocked (or suspendable) logic.

The risk in scheduling is a race between the Post scheduled NBA
commit, and blocking assignments in combinational logic, which might
order incorrectly.

The second point highlights that we can handle stuff like this safely,
which is sometimes used in testbenches:

```systemverilog
always @(posedge clk) begin
    if ($time == 0) a = 0;
end

always @(posedge clk) begin
    if ($time > 0) a <= 2;
end
````

The only dangerous case is:

```systemverilog
always @(posedge clk) foo[idx] <= val;
assign foo[0] = bar;
```

Whit this patch, this will still resolve fine at run-time if 'idx' is
never zero, but might resolve incorrectly if 'idx' is zero.

With the above in mind, the BLKANDNBLK warning is now only issued if:

- We can't prove that the assignments are to non-overlapping bits
- And the blocking assignment is in combinational logic

These are the cases that genuinely require user attention to resolve.

With this patch, there are no more BLKANDNBLK warnings in the RTLMeter
designs.

Fixes #6122.
2025-06-28 20:45:45 +01:00
..
t_dist_attributes Internals: Fix annotation checker not considering base class virtual function annotations (#5459) 2024-09-30 21:34:34 -04:00
t_flag_relinc_dir
t_hier_block_cmake Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_hier_block_import Fix hierarchical verilation for projects with dot-f dependency lists (#5199) (#5669) 2024-12-12 11:25:19 -05:00
t_hier_trace_sub Fix hierarchical compilation with nested -F (#5114) (#5124) 2024-06-12 07:42:52 -04:00
t_preproc_resolve Add `--preproc-resolve` for modules in preprocessor output (#5789) 2025-02-22 04:47:54 +10:00
t_sv_bus_mux_demux
t_sv_cpu_code
tsub
uvm Fix type_id package scope resolution (#5826) 2025-03-06 17:41:27 -05:00
.gitattributes
TestCheck.h Copyright year update. 2025-01-01 08:30:25 -05:00
TestSimulator.h Tests: Add support for Questa in TestSimulator class (#5718) 2025-01-08 09:43:57 -05:00
TestVpi.h Apply 'make format' 2025-02-08 00:07:38 +00:00
TestVpiMain.cpp Internals: Remove single-statement braces. No functional change. 2025-03-19 22:55:11 -04:00
t_EXAMPLE.py Copyright year update. 2025-01-02 06:21:30 -05:00
t_EXAMPLE.v Add PROCINITASSIGN on initial assignments to process variables (#2481). 2025-04-30 22:00:06 -04:00
t_a1_first_cc.py Change `--trace` to `--trace-vcd`. 2025-04-05 10:46:39 -04:00
t_a1_first_cc.v
t_a2_first_sc.py Change `--trace` to `--trace-vcd`. 2025-04-05 10:46:39 -04:00
t_a3_selftest.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_a3_selftest_thread.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_a5_attributes_include.py Tests: Fix ubuntu24.04-arm issues 2025-03-22 16:55:53 -04:00
t_a5_attributes_src.py Tests: Fix ubuntu24.04-arm issues 2025-03-22 16:55:53 -04:00
t_a6_examples.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_a7_hier_block_cmake.py Support objcache when compiling Verilated files with cmake. 2024-09-24 20:55:11 -04:00
t_alias2_unsup.out
t_alias2_unsup.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_alias2_unsup.v
t_alias_unsup.out
t_alias_unsup.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_alias_unsup.v
t_altera_lpm.v Safely support non-overlapping blocking/non-blocking assignments (#6137) 2025-06-28 20:45:45 +01:00
t_altera_lpm_abs.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_altera_lpm_add_sub.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_altera_lpm_and.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_altera_lpm_bustri.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_altera_lpm_clshift.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_altera_lpm_compare.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_altera_lpm_constant.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_altera_lpm_counter.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_altera_lpm_decode.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_altera_lpm_divide.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_altera_lpm_ff.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_altera_lpm_fifo.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_altera_lpm_fifo_dc.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_altera_lpm_inv.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_altera_lpm_latch.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_altera_lpm_mult.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_altera_lpm_mult_noinl.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_altera_lpm_mux.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_altera_lpm_or.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_altera_lpm_ram_dp.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_altera_lpm_ram_dq.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_altera_lpm_ram_io.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_altera_lpm_rom.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_altera_lpm_shiftreg.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_altera_lpm_xor.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_alw_combdly.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_alw_combdly.v
t_alw_dly.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_alw_dly.v
t_alw_noreorder.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_alw_nosplit.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_alw_nosplit.v
t_alw_reorder.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_alw_reorder.v
t_alw_sen_compare.py Fix sorting of wide SenItems (#5816) 2025-03-01 22:11:43 +00:00
t_alw_sen_compare.v Fix sorting of wide SenItems (#5816) 2025-03-01 22:11:43 +00:00
t_alw_split.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_alw_split.v
t_alw_split_cond.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_alw_split_cond.v
t_alw_split_rst.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_alw_split_rst.v
t_alw_splitord.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_alw_splitord.v
t_array_backw_index_bad.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_array_backw_index_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_array_backw_index_bad.v
t_array_compare.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_array_compare.v Tests: Remove unused clk input 2024-10-07 21:44:07 -04:00
t_array_in_struct.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_array_in_struct.v Support StructSel in unpacked array assignments (#5176) 2024-06-12 17:07:33 +01:00
t_array_index_increment.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_array_index_increment.v Tests: Remove unused clk input 2024-10-07 21:44:07 -04:00
t_array_index_side.py Support side effects of form `variable[index_function()]++`. 2025-01-08 19:37:20 -05:00
t_array_index_side.v Support side effects of form `variable[index_function()]++`. 2025-01-08 19:37:20 -05:00
t_array_list_bad.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_array_list_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_array_list_bad.v
t_array_mda.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_array_mda.v
t_array_method.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_array_method.v Tests: Only != is globally allowed to compare strings 2025-04-03 21:26:53 -04:00
t_array_method_bad.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_array_method_bad.py Tests: Disable running some lint tests on vltmt 2025-03-29 07:14:45 -04:00
t_array_method_bad.v
t_array_method_map.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_array_method_map.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_array_method_map.v
t_array_method_unsup.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_array_method_unsup.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_array_method_unsup.v Tests: Only != is globally allowed to compare strings 2025-04-03 21:26:53 -04:00
t_array_non_blocking_loop.py Fix BLKANDNBLK for for VARXREFs (#5569) 2024-10-29 07:27:40 -04:00
t_array_non_blocking_loop.v Fix BLKANDNBLK for for VARXREFs (#5569) 2024-10-29 07:27:40 -04:00
t_array_packed_endian.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_array_packed_endian.v
t_array_packed_sysfunct.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_array_packed_sysfunct.v
t_array_packed_write_read.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_array_packed_write_read.v
t_array_pattern_2d.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_array_pattern_2d.v Fix negative assignment pattern keys (#5580). 2024-11-02 10:06:01 -04:00
t_array_pattern_bad.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_array_pattern_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_array_pattern_bad.v
t_array_pattern_bad2.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_array_pattern_bad2.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_array_pattern_bad2.v
t_array_pattern_bad3.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_array_pattern_bad3.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_array_pattern_bad3.v
t_array_pattern_enum.py Tests: Disable last test due to clang warning 2024-10-06 05:00:57 -04:00
t_array_pattern_enum.v Fix pattern initialization with typedef key (#5512). 2024-10-06 04:01:15 -04:00
t_array_pattern_packed.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_array_pattern_packed.v
t_array_pattern_unpacked.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_array_pattern_unpacked.v
t_array_query.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_array_query.v
t_array_query_with.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_array_query_with.v
t_array_rev.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_array_rev.v
t_array_type_methods.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_array_type_methods.v Tests: Remove unused clk input 2024-10-07 21:44:07 -04:00
t_array_unpacked_public.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_array_unpacked_public.v
t_arraysel_wide.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_arraysel_wide.v
t_assert_always_unsup.out Tests: Improve warning coverage 2025-05-17 16:28:09 -04:00
t_assert_always_unsup.py Tests: Improve warning coverage 2025-05-17 16:28:09 -04:00
t_assert_always_unsup.v Tests: Improve warning coverage 2025-05-17 16:28:09 -04:00
t_assert_basic.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_assert_basic.v Tests: Fix some verilog.y parser coverage holes 2024-07-26 07:29:15 -04:00
t_assert_basic_cover.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_assert_basic_fail.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_assert_basic_off.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_assert_casez.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_assert_casez.v
t_assert_clock_event_unsup.out
t_assert_clock_event_unsup.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_assert_clock_event_unsup.v
t_assert_comp.out Fix %% on elaboration severity tasks (#5922). 2025-04-07 08:38:05 -04:00
t_assert_comp.py Fix %% on elaboration severity tasks (#5922). 2025-04-07 08:38:05 -04:00
t_assert_comp.v Fix %% on elaboration severity tasks (#5922). 2025-04-07 08:38:05 -04:00
t_assert_comp_bad.out Fix %% on elaboration severity tasks (#5922). 2025-04-07 08:38:05 -04:00
t_assert_comp_bad.py Tests: Fix relocation of extract tests 2025-04-30 23:02:19 -04:00
t_assert_comp_bad.v Fix %% on elaboration severity tasks (#5922). 2025-04-07 08:38:05 -04:00
t_assert_cover.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_assert_cover.v
t_assert_cover_off.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_assert_ctl_arg.cpp Support assertcontrol directive type (#5310) 2024-08-05 17:54:13 -04:00
t_assert_ctl_arg.dat.out Add filtering type option in verilator_coverage (#6030) 2025-05-22 02:42:09 -07:00
t_assert_ctl_arg.out Tests: Default to check_finished=>1 2024-08-24 19:27:59 -04:00
t_assert_ctl_arg.py Fix format mis-indendenting t_assert_ctl_arg 2025-04-06 10:39:07 -04:00
t_assert_ctl_arg.v Tests: Default to check_finished=>1 2024-08-24 19:27:59 -04:00
t_assert_ctl_arg_noinl.py Tests: Cleanup some .cpp paths. No test functional change indended. 2025-04-25 20:57:11 -04:00
t_assert_ctl_arg_unsup.out Support assertcontrol directive type (#5310) 2024-08-05 17:54:13 -04:00
t_assert_ctl_arg_unsup.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_assert_ctl_arg_unsup.v Support assertcontrol directive type (#5310) 2024-08-05 17:54:13 -04:00
t_assert_ctl_concurrent.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_assert_ctl_concurrent.v
t_assert_ctl_concurrent_noinl.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_assert_ctl_immediate.out Support `$assertcontrol` assertion_type (#5236) 2024-07-10 05:06:13 -04:00
t_assert_ctl_immediate.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_assert_ctl_immediate.v Support `$assertcontrol` assertion_type (#5236) 2024-07-10 05:06:13 -04:00
t_assert_ctl_immediate_noinl.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_assert_ctl_unsup.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_assert_ctl_unsup.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_assert_ctl_unsup.v Support `$assertcontrol` assertion_type (#5236) 2024-07-10 05:06:13 -04:00
t_assert_disable_bad.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_assert_disable_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_assert_disable_bad.v Support `default disable iff` and `$inferred_disable` (#4016). 2024-11-26 22:27:32 -05:00
t_assert_disable_count.py Support `default disable iff` and `$inferred_disable` (#4016). 2024-11-26 22:27:32 -05:00
t_assert_disable_count.v Support `default disable iff` and `$inferred_disable` (#4016). 2024-11-26 22:27:32 -05:00
t_assert_disable_iff.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_assert_disable_iff.v Support `default disable iff` and `$inferred_disable` (#4016). 2024-11-26 22:27:32 -05:00
t_assert_disabled.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_assert_dup_bad.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_assert_dup_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_assert_dup_bad.v
t_assert_elab.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_assert_elab.v
t_assert_elab_bad.py Tests: Move per-command expect= to instead check logfiles 2024-09-19 18:53:22 -04:00
t_assert_enabled_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_assert_enabled_off.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_assert_enabled_on_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_assert_iff.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_assert_iff.v
t_assert_iff_bad1.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_assert_iff_bad2.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_assert_iff_clk_unsup.out
t_assert_iff_clk_unsup.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_assert_iff_clk_unsup.v
t_assert_imm_nz_bad.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_assert_imm_nz_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_assert_imm_nz_bad.v
t_assert_implication.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_assert_implication.v
t_assert_implication_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_assert_inside_cond.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_assert_inside_cond.v
t_assert_inside_cond_bad.out
t_assert_inside_cond_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_assert_on.v
t_assert_past.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_assert_past.v
t_assert_procedural_clk_bad.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_assert_procedural_clk_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_assert_procedural_clk_bad.v
t_assert_question.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_assert_question.v
t_assert_sampled.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_assert_sampled.v
t_assert_synth.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_assert_synth.v
t_assert_synth_full.out
t_assert_synth_full.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_assert_synth_full.vlt
t_assert_synth_full_vlt.out
t_assert_synth_full_vlt.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_assert_synth_off.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_assert_synth_parallel.out
t_assert_synth_parallel.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_assert_synth_parallel.vlt
t_assert_synth_parallel_vlt.out
t_assert_synth_parallel_vlt.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_assert_unique_case.out
t_assert_unique_case.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_assert_unique_case_bad.out
t_assert_unique_case_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_assert_unique_case_bad.v
t_assign_expr.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_assign_expr.v
t_assign_inline.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_assign_inline.v
t_assign_slice_overflow.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_assign_slice_overflow.v
t_assign_slice_overflow_ox.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_assigndly_dynamic.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_assigndly_dynamic.v
t_assigndly_dynamic_delay.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_assigndly_dynamic_nofork.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_assigndly_dynamic_notiming_bad.out
t_assigndly_dynamic_notiming_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_assigndly_dynamic_notiming_bad.v
t_assigndly_task.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_assigndly_task.v
t_assoc.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_assoc.v Fix extraneous WIDTH warning on assoc.exists() 2025-05-18 11:25:25 -04:00
t_assoc2.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_assoc2.v Tests: Fix string !== for other simulators. 2024-10-03 18:14:53 -04:00
t_assoc_compare.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_assoc_compare.v
t_assoc_enum.py Fix associative arrays with enum keys (#6034) (#6035) 2025-05-24 17:59:23 -04:00
t_assoc_enum.v Fix associative arrays with enum keys (#6034) (#6035) 2025-05-24 17:59:23 -04:00
t_assoc_method.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_assoc_method.v Tests: Only != is globally allowed to compare strings 2025-04-03 21:26:53 -04:00
t_assoc_method_bad.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_assoc_method_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_assoc_method_bad.v
t_assoc_method_map.out
t_assoc_method_map.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_assoc_method_map.v
t_assoc_nokey_bad.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_assoc_nokey_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_assoc_nokey_bad.v
t_assoc_ref_type.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_assoc_ref_type.v
t_assoc_wildcard.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_assoc_wildcard.v Tests: Fix string !== for other simulators. 2024-10-03 18:14:53 -04:00
t_assoc_wildcard_bad.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_assoc_wildcard_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_assoc_wildcard_bad.v
t_assoc_wildcard_map.out
t_assoc_wildcard_map.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_assoc_wildcard_map.v
t_assoc_wildcard_method.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_assoc_wildcard_method.v Tests: Only != is globally allowed to compare strings 2025-04-03 21:26:53 -04:00
t_attr_parenstar.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_attr_parenstar.v
t_balance_cats.py Move Concat balancing from DFG to FuncOpt (#5602) 2024-11-10 17:23:11 +00:00
t_balance_cats.v Move Concat balancing from DFG to FuncOpt (#5602) 2024-11-10 17:23:11 +00:00
t_balance_cats_nofunc.py Move Concat balancing from DFG to FuncOpt (#5602) 2024-11-10 17:23:11 +00:00
t_bench_mux4k.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_bench_mux4k.v
t_bench_mux4k_onecpu.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_benchmarksim.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_bigmem_bad.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_bigmem_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_bigmem_bad.v
t_bind.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_bind.v
t_bind2.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_bind2.v
t_bind_nfound.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_bind_nfound.v
t_bitsel_2d_slice.py Fix packed array deduction (#6046) 2025-05-31 07:55:00 -04:00
t_bitsel_2d_slice.v Fix packed array deduction (#6046) 2025-05-31 07:55:00 -04:00
t_bitsel_concat.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_bitsel_concat.v Fix multidimensional function return value selects (#5382). 2024-09-09 19:56:09 -04:00
t_bitsel_const_bad.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_bitsel_const_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_bitsel_const_bad.v Tests: Remove unused clk input 2024-10-07 21:44:07 -04:00
t_bitsel_enum.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_bitsel_enum.v
t_bitsel_lvalue.py Fix error on out-of-range lvalue part select (#5820). 2025-03-08 11:05:58 -05:00
t_bitsel_lvalue.v Fix error on out-of-range lvalue part select (#5820). 2025-03-08 11:05:58 -05:00
t_bitsel_over32.py Fix packed selection using over 32-bit index (#5957). 2025-04-24 18:25:55 -04:00
t_bitsel_over32.v Fix packed selection using over 32-bit index (#5957). 2025-04-24 18:25:55 -04:00
t_bitsel_slice.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_bitsel_slice.v
t_bitsel_struct.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_bitsel_struct.v Tests: Remove unused clk input 2024-10-07 21:44:07 -04:00
t_bitsel_struct2.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_bitsel_struct2.v
t_bitsel_struct3.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_bitsel_struct3.v Tests: Remove unused clk input 2024-10-07 21:44:07 -04:00
t_bitsel_wire_array_bad.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_bitsel_wire_array_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_bitsel_wire_array_bad.v Tests: Remove unused clk input 2024-10-07 21:44:07 -04:00
t_blocking.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_blocking.v
t_bug3180.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_bug3180.v
t_c_this.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_c_this.v
t_c_width_bad.out Tests: Improve warning coverage 2025-05-17 16:28:09 -04:00
t_c_width_bad.py Tests: Improve warning coverage 2025-05-17 16:28:09 -04:00
t_c_width_bad.v Tests: Improve warning coverage 2025-05-17 16:28:09 -04:00
t_case_66bits.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_case_66bits.v
t_case_66bits_no_const_eager.py Optimize constify within Expand and Subst (#6111) 2025-06-23 17:58:26 -04:00
t_case_66bits_noexpand.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_case_auto1.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_case_auto1.v
t_case_deep.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_case_deep.v
t_case_default_bad.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_case_default_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_case_default_bad.v
t_case_dupitems.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_case_dupitems.v
t_case_duplicated_if.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_case_duplicated_if.v
t_case_enum_complete.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_case_enum_complete.v
t_case_enum_complete_wildcard.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_case_enum_complete_wildcard.v
t_case_enum_emptyish.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_case_enum_emptyish.v
t_case_enum_incomplete_bad.out
t_case_enum_incomplete_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_case_enum_incomplete_bad.v
t_case_enum_incomplete_wildcard_bad.out
t_case_enum_incomplete_wildcard_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_case_enum_incomplete_wildcard_bad.v
t_case_genx_bad.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_case_genx_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_case_genx_bad.v
t_case_group.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_case_group.v
t_case_huge.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_case_huge.v
t_case_huge_sub.v Commentary 2024-09-08 11:11:20 -04:00
t_case_huge_sub2.v Commentary 2024-09-08 11:11:20 -04:00
t_case_huge_sub3.v Commentary 2024-09-08 11:11:20 -04:00
t_case_huge_sub4.v
t_case_incrdecr.py Change `--trace` to `--trace-vcd`. 2025-04-05 10:46:39 -04:00
t_case_incrdecr.v
t_case_inside.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_case_inside.v
t_case_inside_bad.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_case_inside_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_case_inside_bad.v
t_case_itemwidth.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_case_itemwidth.v
t_case_nest.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_case_nest.v
t_case_onehot.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_case_onehot.v
t_case_orig.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_case_orig.v
t_case_overlap_bad.out
t_case_overlap_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_case_overlap_bad.v
t_case_reducer.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_case_reducer.v
t_case_string.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_case_string.v
t_case_string2.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_case_string2.v
t_case_unique_many.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_case_unique_many.v Fix assert on wide expression (#5319) (#5324) 2024-08-06 01:45:57 -04:00
t_case_wild.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_case_wild.v Add syntax error on empty case items, per IEEE grammar. 2024-09-25 22:40:28 -04:00
t_case_write1.out
t_case_write1.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_case_write1.v
t_case_write1_noexpand.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_case_write1_tasks.v
t_case_write2.out
t_case_write2.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_case_write2.v
t_case_write2_tasks.v
t_case_x.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_case_x.v
t_case_x_bad.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_case_x_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_case_x_bad.v
t_case_zx_bad.out
t_case_zx_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_case_zx_bad.v
t_cast.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_cast.v Fix casting to arrays of enums (#6044) 2025-05-27 21:14:09 -04:00
t_cast_class.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_cast_class.v
t_cast_class_incompat_bad.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_cast_class_incompat_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_cast_class_incompat_bad.v
t_cast_param_logic.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_cast_param_logic.v
t_cast_param_type.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_cast_param_type.v
t_cast_signed.py Fix signed cast (#6912) (#6068) 2025-06-06 21:13:31 -04:00
t_cast_signed.v Fix signed cast (#6912) (#6068) 2025-06-06 21:13:31 -04:00
t_cast_size_bad.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_cast_size_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_cast_size_bad.v
t_cast_stream.py Internals: Defer AstCast into V3LinkDot, in preparation for future parser 2025-04-28 19:34:40 -04:00
t_cast_stream.v Internals: Defer AstCast into V3LinkDot, in preparation for future parser 2025-04-28 19:34:40 -04:00
t_cast_types.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_cast_types.v
t_castdyn.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_castdyn.v
t_castdyn_bbox.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_castdyn_castconst_bad.out Fix string to be more standard (#5082) (#5083). 2024-05-31 21:51:12 -04:00
t_castdyn_castconst_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_castdyn_castconst_bad.v
t_castdyn_enum.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_castdyn_enum.v
t_castdyn_run_bad.out
t_castdyn_run_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_castdyn_run_bad.v
t_castdyn_unsup_bad.out Fix string to be more standard (#5082) (#5083). 2024-05-31 21:51:12 -04:00
t_castdyn_unsup_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_castdyn_unsup_bad.v
t_ccache_report.py Change `--trace` to `--trace-vcd`. 2025-04-05 10:46:39 -04:00
t_ccache_report__ccache_report_initial.out
t_ccache_report__ccache_report_rebuild.out
t_cellarray.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_cellarray.v
t_checker.py Support simple `checker` blocks (#4066). 2025-04-06 23:42:49 -04:00
t_checker.v Support simple `checker` blocks (#4066). 2025-04-06 23:42:49 -04:00
t_checker_top.py Support simple `checker` blocks (#4066). 2025-04-06 23:42:49 -04:00
t_checker_top.v Support simple `checker` blocks (#4066). 2025-04-06 23:42:49 -04:00
t_checker_unsup.out Support simple `checker` blocks (#4066). 2025-04-06 23:42:49 -04:00
t_checker_unsup.py Internals: Minor refactoring of checker parsing/tests. No functional change. 2025-04-06 23:13:24 -04:00
t_checker_unsup.v Support simple `checker` blocks (#4066). 2025-04-06 23:42:49 -04:00
t_chg_first.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_chg_first.v
t_class1.out
t_class1.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_class1.v
t_class2.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_class2.v
t_class_assign_bad.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_class_assign_bad.py Tests: Disable running some lint tests on vltmt 2025-03-29 07:14:45 -04:00
t_class_assign_bad.v
t_class_assign_cond.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_class_assign_cond.v
t_class_assign_cond_bad.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_class_assign_cond_bad.py Tests: Disable running some lint tests on vltmt 2025-03-29 07:14:45 -04:00
t_class_assign_cond_bad.v
t_class_builtin_bad.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_class_builtin_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_class_builtin_bad.v
t_class_capitalization.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_class_capitalization.v Fix classes/modules of case-similar names (#5109). 2024-07-14 13:57:16 -04:00
t_class_class.py Support nested classes (#4178) (#5778) 2025-02-17 23:47:41 +11:00
t_class_class.v Support nested classes (#4178) (#5778) 2025-02-17 23:47:41 +11:00
t_class_compare.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_class_compare.v Support nested classes (#4178) (#5778) 2025-02-17 23:47:41 +11:00
t_class_const.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_class_const.v
t_class_copy.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_class_copy.v
t_class_copy2.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_class_copy2.v
t_class_copy_bad.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_class_copy_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_class_copy_bad.v
t_class_diamond.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_class_diamond.v
t_class_dict.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_class_dict.v
t_class_enum.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_class_enum.v
t_class_eq.py Fix duplicate-named class variable equivalence (#5737). 2025-01-18 15:25:49 -05:00
t_class_eq.v Fix duplicate-named class variable equivalence (#5737). 2025-01-18 15:25:49 -05:00
t_class_extends.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_class_extends.v
t_class_extends1.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_class_extends1.v Support nested classes (#4178) (#5778) 2025-02-17 23:47:41 +11:00
t_class_extends2.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_class_extends2.v Support nested classes (#4178) (#5778) 2025-02-17 23:47:41 +11:00
t_class_extends_alias_unsup.out
t_class_extends_alias_unsup.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_class_extends_alias_unsup.v
t_class_extends_aliased_real_bad.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_class_extends_aliased_real_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_class_extends_aliased_real_bad.v
t_class_extends_arg.py Support class extends with arguments. 2025-04-08 22:09:40 -04:00
t_class_extends_arg.v Support class extends with arguments. 2025-04-08 22:09:40 -04:00
t_class_extends_arg_super_bad.out Support class extends with arguments. 2025-04-08 22:09:40 -04:00
t_class_extends_arg_super_bad.py Support class extends with arguments. 2025-04-08 22:09:40 -04:00
t_class_extends_arg_super_bad.v Support class extends with arguments. 2025-04-08 22:09:40 -04:00
t_class_extends_bad.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_class_extends_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_class_extends_bad.v
t_class_extends_colon.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_class_extends_colon.v
t_class_extends_default.out Support class extends with arguments. 2025-04-08 22:09:40 -04:00
t_class_extends_default.py Support class extends with arguments. 2025-04-08 22:09:40 -04:00
t_class_extends_default.v Support class extends with arguments. 2025-04-08 22:09:40 -04:00
t_class_extends_int_param_bad.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_class_extends_int_param_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_class_extends_int_param_bad.v
t_class_extends_nf_bad.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_class_extends_nf_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_class_extends_nf_bad.v Internals: Defer `class extends` resolution until link 2024-11-10 19:34:00 -05:00
t_class_extends_param.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_class_extends_param.v Support nested classes (#4178) (#5778) 2025-02-17 23:47:41 +11:00
t_class_extends_param_unused.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_class_extends_param_unused.v
t_class_extends_protect_ids.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_class_extends_rec_bad.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_class_extends_rec_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_class_extends_rec_bad.v
t_class_extends_this.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_class_extends_this.v Support nested classes (#4178) (#5778) 2025-02-17 23:47:41 +11:00
t_class_extends_this3.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_class_extends_this3.v Support nested classes (#4178) (#5778) 2025-02-17 23:47:41 +11:00
t_class_extends_this_protect_ids.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_class_extends_vsyment.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_class_extends_vsyment.v
t_class_extern.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_class_extern.v Support nested classes (#4178) (#5778) 2025-02-17 23:47:41 +11:00
t_class_extern_bad.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_class_extern_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_class_extern_bad.v
t_class_field_name.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_class_field_name.v
t_class_format.out Fix %p format output for real inside struct (#5713). 2025-01-03 19:15:03 -05:00
t_class_format.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_class_format.v Fix %p format output for real inside struct (#5713). 2025-01-03 19:15:03 -05:00
t_class_forward.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_class_forward.v
t_class_func_arg_unused.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_class_func_arg_unused.v
t_class_func_dot.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_class_func_dot.v
t_class_func_nvoid_bad.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_class_func_nvoid_bad.py Fix error message when call task as a function (#3089). 2025-01-04 12:55:15 -05:00
t_class_func_nvoid_bad.v Fix error message when call task as a function (#3089). 2025-01-04 12:55:15 -05:00
t_class_fwd_cc.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_class_fwd_cc.v
t_class_if_assign.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_class_if_assign.v
t_class_imp2.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_class_imp2.v
t_class_inc.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_class_inc.v
t_class_local.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_class_local.v Support nested classes (#4178) (#5778) 2025-02-17 23:47:41 +11:00
t_class_local_bad.out
t_class_local_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_class_local_bad.v
t_class_local_nested_bad.out Support nested classes (#4178) (#5778) 2025-02-17 23:47:41 +11:00
t_class_local_nested_bad.py Support nested classes (#4178) (#5778) 2025-02-17 23:47:41 +11:00
t_class_local_nested_bad.v Support nested classes (#4178) (#5778) 2025-02-17 23:47:41 +11:00
t_class_local_protect_ids.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_class_local_typedef_bad.out Support `local` and `protected` on `typedef` (#5460). 2024-10-06 18:08:40 -04:00
t_class_local_typedef_bad.py Support `local` and `protected` on `typedef` (#5460). 2024-10-06 18:08:40 -04:00
t_class_local_typedef_bad.v Support `local` and `protected` on `typedef` (#5460). 2024-10-06 18:08:40 -04:00
t_class_member_bad.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_class_member_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_class_member_bad.v
t_class_member_bad2.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_class_member_bad2.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_class_member_bad2.v
t_class_member_sens.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_class_member_sens.v
t_class_member_var_virt_bad.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_class_member_var_virt_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_class_member_var_virt_bad.v
t_class_membersel_int.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_class_membersel_int.v Add error on instances without parenthesis. 2024-09-22 12:25:35 -04:00
t_class_method.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_class_method.v
t_class_method_bad.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_class_method_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_class_method_bad.v
t_class_method_str_literal.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_class_method_str_literal.v
t_class_method_struct.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_class_method_struct.v
t_class_mispure_bad.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_class_mispure_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_class_mispure_bad.v
t_class_misstatic_bad.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_class_misstatic_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_class_misstatic_bad.v
t_class_mod_bad.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_class_mod_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_class_mod_bad.v
t_class_module.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_class_module.v Support nested classes (#4178) (#5778) 2025-02-17 23:47:41 +11:00
t_class_name.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_class_name.v
t_class_nested.py Support nested classes (#4178) (#5778) 2025-02-17 23:47:41 +11:00
t_class_nested.v Support nested classes (#4178) (#5778) 2025-02-17 23:47:41 +11:00
t_class_nested_link.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_class_nested_link.v
t_class_new.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_class_new.v Support nested classes (#4178) (#5778) 2025-02-17 23:47:41 +11:00
t_class_new_bad.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_class_new_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_class_new_bad.v
t_class_new_default.out
t_class_new_default.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_class_new_default.v
t_class_new_noparen.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_class_new_noparen.v
t_class_new_ref_bad.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_class_new_ref_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_class_new_ref_bad.v Improve new class error (#5359) 2024-08-11 10:09:05 -04:00
t_class_new_return.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_class_new_return.v
t_class_new_scoped.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_class_new_scoped.py Tests: Add t_class_new_scoped (unsupported) 2024-12-13 17:58:08 -05:00
t_class_new_scoped.v Tests: Add t_class_new_scoped (unsupported) 2024-12-13 17:58:08 -05:00
t_class_new_this.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_class_new_this.v Fix `new this` (#5909). 2025-04-01 08:12:34 -04:00
t_class_null_bad.out
t_class_null_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_class_null_bad.v
t_class_null_struct.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_class_null_struct.v
t_class_override.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_class_override.v
t_class_override_bad.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_class_override_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_class_override_bad.v
t_class_package.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_class_package.v
t_class_packed.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_class_packed.v Add error on instances without parenthesis. 2024-09-22 12:25:35 -04:00
t_class_param.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_class_param.v Fix casting etc of typedef'ed doubles. 2025-05-04 16:34:37 -04:00
t_class_param_bad1.out
t_class_param_bad1.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_class_param_bad1.v
t_class_param_bad2.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_class_param_bad2.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_class_param_bad2.v
t_class_param_bad_paren.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_class_param_bad_paren.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_class_param_bad_paren.v
t_class_param_circ_bad.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_class_param_circ_bad.py Tests: Disable running some lint tests on vltmt 2025-03-29 07:14:45 -04:00
t_class_param_circ_bad.v
t_class_param_comma_bad.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_class_param_comma_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_class_param_comma_bad.v
t_class_param_enum.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_class_param_enum.v
t_class_param_enum_bad.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_class_param_enum_bad.py Tests: Disable running some lint tests on vltmt 2025-03-29 07:14:45 -04:00
t_class_param_enum_bad.v
t_class_param_extends.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_class_param_extends.v
t_class_param_extends2.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_class_param_extends2.v
t_class_param_extends3.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_class_param_extends3.v
t_class_param_extra_bad.out Fix not reporting class reference with extra parameters (#5467). 2024-10-04 05:38:36 -04:00
t_class_param_extra_bad.py Fix not reporting class reference with extra parameters (#5467). 2024-10-04 05:38:36 -04:00
t_class_param_extra_bad.v Fix not reporting class reference with extra parameters (#5467). 2024-10-04 05:38:36 -04:00
t_class_param_func_return.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_class_param_func_return.v
t_class_param_lvalue.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_class_param_lvalue.v
t_class_param_mod.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_class_param_mod.v Tests: Only != is globally allowed to compare strings 2025-04-03 21:26:53 -04:00
t_class_param_nconst_bad.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_class_param_nconst_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_class_param_nconst_bad.v
t_class_param_nested_bad.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_class_param_nested_bad.py Tests: Disable running some lint tests on vltmt 2025-03-29 07:14:45 -04:00
t_class_param_nested_bad.v
t_class_param_noinit.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_class_param_noinit.v
t_class_param_noinit_bad.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_class_param_noinit_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_class_param_noinit_bad.v Improve error when no parameter type value (#5645 partial) 2024-11-28 14:09:06 -05:00
t_class_param_override_local_bad.out
t_class_param_override_local_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_class_param_override_local_bad.v
t_class_param_pkg.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_class_param_pkg.v Tests: Only != is globally allowed to compare strings 2025-04-03 21:26:53 -04:00
t_class_param_rewrite.py Fix equivalence checking when replacing type parameters (#5213) (#5255) 2024-10-03 21:19:07 +01:00
t_class_param_rewrite.v Support nested classes (#4178) (#5778) 2025-02-17 23:47:41 +11:00
t_class_param_subtype.v
t_class_param_subtype_bad_paren.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_class_param_subtype_bad_paren.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_class_param_subtype_constsim.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_class_param_type.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_class_param_type.v
t_class_param_typedef.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_class_param_typedef.v
t_class_param_typedef2.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_class_param_typedef2.v
t_class_param_unused_default.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_class_param_unused_default.v
t_class_param_virtual_bad.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_class_param_virtual_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_class_param_virtual_bad.v
t_class_ref_as_arg_cast.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_class_ref_as_arg_cast.v
t_class_ref_bad.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_class_ref_bad.py Internals: Remove V3LinkParse's need of class links. No functional change intended. 2024-09-20 18:26:23 -04:00
t_class_ref_bad.v Tests: Rename some tests into proper groups. No functional change. 2024-09-21 10:04:58 -04:00
t_class_ref_ref.py Fix class reference with pin that is a class reference (#5454). 2024-09-17 17:38:18 -04:00
t_class_ref_ref.v Fix class reference with pin that is a class reference (#5454). 2024-09-17 17:38:18 -04:00
t_class_scope_import_bad.out Remove symbol table from parser: Support redeclaring type as non-type; major parsing change (#2412). 2025-05-18 07:13:37 -04:00
t_class_scope_import_bad.py Tests: Cleanup some type tests 2025-05-17 21:09:05 -04:00
t_class_scope_import_bad.v Tests: Cleanup some type tests 2025-05-17 21:09:05 -04:00
t_class_short_circuit.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_class_short_circuit.v
t_class_split.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_class_split.v
t_class_static.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_class_static.v Tests: Remove unused clk input 2024-10-07 21:44:07 -04:00
t_class_static_default_arg.py Fix static function wrappers (#5536) 2024-10-14 07:41:17 -04:00
t_class_static_default_arg.v Fix static function wrappers (#5536) 2024-10-14 07:41:17 -04:00
t_class_static_member.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_class_static_member.v Support nested classes (#4178) (#5778) 2025-02-17 23:47:41 +11:00
t_class_static_member_pkg.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_class_static_member_pkg.v Tests: Remove unused clk input 2024-10-07 21:44:07 -04:00
t_class_static_member_sel.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_class_static_member_sel.v
t_class_static_method.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_class_static_method.v
t_class_static_method_protect_ids.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_class_static_order.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_class_static_order.v
t_class_super_bad.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_class_super_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_class_super_bad.v Tests: Remove unused clk input 2024-10-07 21:44:07 -04:00
t_class_super_bad2.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_class_super_bad2.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_class_super_bad2.v
t_class_super_new.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_class_super_new.v
t_class_super_new2.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_class_super_new2.v
t_class_super_new_bad_nfirst.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_class_super_new_bad_nfirst.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_class_super_new_bad_nfirst.v
t_class_this_constructor.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_class_this_constructor.v
t_class_typedef.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_class_typedef.v
t_class_unsup_bad.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_class_unsup_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_class_unsup_bad.v Support `local` and `protected` on `typedef` (#5460). 2024-10-06 18:08:40 -04:00
t_class_uses_this.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_class_uses_this.v Tests: Remove unused clk input 2024-10-07 21:44:07 -04:00
t_class_uses_this_bad.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_class_uses_this_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_class_uses_this_bad.v Tests: Remove unused clk input 2024-10-07 21:44:07 -04:00
t_class_virtual.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_class_virtual.v Support nested classes (#4178) (#5778) 2025-02-17 23:47:41 +11:00
t_class_virtual_bad.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_class_virtual_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_class_virtual_bad.v
t_class_virtual_chain_ctor.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_class_virtual_chain_ctor.v
t_class_virtual_protect_ids.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_class_virtual_pure.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_class_virtual_pure.v
t_class_virtual_pure_bad.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_class_virtual_pure_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_class_virtual_pure_bad.v
t_class_vparam.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_class_vparam.v Tests: Remove unused clk input 2024-10-07 21:44:07 -04:00
t_class_wide.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_class_wide.v
t_clk_2in.cpp
t_clk_2in.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_clk_2in.v
t_clk_2in_vec.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_clk_concat.out
t_clk_concat.py Tests: Remove file-number hardcoded dependencies. 2024-11-12 21:39:13 -05:00
t_clk_concat.v
t_clk_concat.vlt
t_clk_concat2.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_clk_concat2.v
t_clk_concat3.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_clk_concat3.v
t_clk_concat4.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_clk_concat4.v
t_clk_concat5.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_clk_concat5.v
t_clk_concat6.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_clk_concat6.v
t_clk_concat_vlt.out
t_clk_concat_vlt.py Tests: Remove file-number hardcoded dependencies. 2024-11-12 21:39:13 -05:00
t_clk_condflop.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_clk_condflop.v
t_clk_dpulse.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_clk_dpulse.v
t_clk_dsp.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_clk_dsp.v
t_clk_first.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_clk_first.v
t_clk_first_bad.out
t_clk_first_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_clk_first_deprecated.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_clk_first_deprecated.v
t_clk_gate_ext.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_clk_gate_ext.v
t_clk_gater.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_clk_gater.v
t_clk_gen.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_clk_gen.v
t_clk_inp_init.cpp
t_clk_inp_init.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_clk_inp_init.v
t_clk_latch.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_clk_latch.v
t_clk_latch_edgestyle.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_clk_latchgate.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_clk_latchgate.v
t_clk_powerdn.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_clk_powerdn.v
t_clk_scope_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_clk_scope_bad.v
t_clk_vecgen1.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_clk_vecgen1.v
t_clk_vecgen2.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_clk_vecgen3.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_clocked_release_combo.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_clocked_release_combo.v
t_clocker.out Fix trace hierarchicalName runtime errors (#5668) (#6076). 2025-06-10 20:17:32 -04:00
t_clocker.py Change `--trace` to `--trace-vcd`. 2025-04-05 10:46:39 -04:00
t_clocker.v
t_clocking_bad1.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_clocking_bad1.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_clocking_bad1.v
t_clocking_bad2.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_clocking_bad2.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_clocking_bad2.v
t_clocking_bad3.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_clocking_bad3.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_clocking_bad3.v
t_clocking_bad4.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_clocking_bad4.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_clocking_bad4.v
t_clocking_bad5.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_clocking_bad5.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_clocking_bad5.v
t_clocking_concat.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_clocking_concat.v
t_clocking_empty_block.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_clocking_empty_block.v
t_clocking_inout.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_clocking_inout.v Support `inout` clocking items (#5160) 2024-06-07 08:30:58 -04:00
t_clocking_notiming.out
t_clocking_notiming.py Tests: Disable running some lint tests on vltmt 2025-03-29 07:14:45 -04:00
t_clocking_notiming.v
t_clocking_out_on_change.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_clocking_out_on_change.v Fix output clockvar overwriting signal (#5320) (#5347) 2024-08-08 21:48:25 +01:00
t_clocking_react.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_clocking_react.v Fix driving clocking block in Reactive 2024-09-04 07:57:51 -04:00
t_clocking_sched.out
t_clocking_sched.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_clocking_sched.v
t_clocking_sched_timing.out
t_clocking_sched_timing.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_clocking_sched_timing_forkproc.out
t_clocking_sched_timing_forkproc.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_clocking_timing.v
t_clocking_timing1.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_clocking_timing2.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_clocking_unsup1.out Support `inout` clocking items (#5160) 2024-06-07 08:30:58 -04:00
t_clocking_unsup1.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_clocking_unsup1.v Support `inout` clocking items (#5160) 2024-06-07 08:30:58 -04:00
t_clocking_unsup2.out
t_clocking_unsup2.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_clocking_unsup2.v
t_clocking_virtual.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_clocking_virtual.v Support clocking blocks in virtual interfaces (#5235) 2024-07-09 18:31:58 -04:00
t_clocking_xref.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_clocking_xref.v Support cross-module clockvars access (#5184) 2024-06-30 15:19:02 -04:00
t_comb_input_0.cpp
t_comb_input_0.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_comb_input_0.v
t_comb_input_1.cpp
t_comb_input_1.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_comb_input_1.v
t_comb_input_2.cpp
t_comb_input_2.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_comb_input_2.v
t_comb_loop_through_unpacked_array.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_comb_loop_through_unpacked_array.v
t_compiler_include.cpp Support`--compiler-include` headers in user-supplied cpp files (#5271) 2024-07-24 06:40:39 -04:00
t_compiler_include.h Support`--compiler-include` headers in user-supplied cpp files (#5271) 2024-07-24 06:40:39 -04:00
t_compiler_include.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_compiler_include.v Support`--compiler-include` headers in user-supplied cpp files (#5271) 2024-07-24 06:40:39 -04:00
t_compiler_include_dpi.cpp Support`--compiler-include` headers in user-supplied cpp files (#5271) 2024-07-24 06:40:39 -04:00
t_compiler_include_dpi.h Support`--compiler-include` headers in user-supplied cpp files (#5271) 2024-07-24 06:40:39 -04:00
t_compiler_include_dpi.py Tests: Cleanup some .cpp paths. No test functional change indended. 2025-04-25 20:57:11 -04:00
t_compiler_include_dpi.v Support`--compiler-include` headers in user-supplied cpp files (#5271) 2024-07-24 06:40:39 -04:00
t_compiler_include_dpi_split.py Tests: Cleanup some .cpp paths. No test functional change indended. 2025-04-25 20:57:11 -04:00
t_compiler_include_split.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_concat_casts.py Fix concatenation and type casting (#6012) (#6013) 2025-05-21 08:41:29 -04:00
t_concat_casts.v Fix concatenation and type casting (#6012) (#6013) 2025-05-21 08:41:29 -04:00
t_concat_impure.py Support for assignments to concatenations with impure RHS (#6002) 2025-05-12 19:19:38 -04:00
t_concat_impure.v Support for assignments to concatenations with impure RHS (#6002) 2025-05-12 19:19:38 -04:00
t_concat_large.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_concat_large.v
t_concat_large_bad.out
t_concat_large_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_concat_large_bad.v
t_concat_link_bad.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_concat_link_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_concat_link_bad.v
t_concat_opt.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_concat_opt.v
t_concat_or.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_concat_or.v
t_concat_sel.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_concat_sel.v
t_concat_string.py Support parameter forward types. 2025-05-19 08:35:38 -04:00
t_concat_string.v Fix exponential ConcatN (#5488) 2024-09-26 05:12:24 -04:00
t_concat_unpack.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_concat_unpack.v
t_config_include_bad.out Add lib.map information to unsupported message, etc 2025-05-03 05:30:40 -04:00
t_config_include_bad.py Add lib.map information to unsupported message, etc 2025-05-03 05:30:40 -04:00
t_config_include_bad.v Tests: Add mis-include test. 2025-04-30 19:00:17 -04:00
t_config_libmap.map Internals: Rename to instances, and other minor cleanups 2025-05-04 14:57:10 -04:00
t_config_libmap.out Internals: Rename to instances, and other minor cleanups 2025-05-04 14:57:10 -04:00
t_config_libmap.py Add lib.map information to unsupported message, etc 2025-05-03 05:30:40 -04:00
t_config_libmap.v Add lib.map information to unsupported message, etc 2025-05-03 05:30:40 -04:00
t_config_libmap_inc.map Internals: Rename to instances, and other minor cleanups 2025-05-04 14:57:10 -04:00
t_const.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_const.v
t_const_bad.out
t_const_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_const_bad.v
t_const_bitoptree_bug3096.cpp
t_const_bitoptree_bug3096.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_const_bitoptree_bug3096.v
t_const_dec_mixed_bad.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_const_dec_mixed_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_const_dec_mixed_bad.v
t_const_hi.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_const_hi.v
t_const_no_opt.py Tests: Rename some tests into proper groups. No functional change. 2024-09-21 10:04:58 -04:00
t_const_number_bad.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_const_number_bad.py Tests: Rename some tests into proper groups. No functional change. 2024-09-21 10:04:58 -04:00
t_const_number_bad.v Tests: Rename some tests into proper groups. No functional change. 2024-09-21 10:04:58 -04:00
t_const_number_unsized.py Remove warning on unsized numbers exceeding 32-bits. 2024-09-21 19:19:12 -04:00
t_const_number_unsized.v Remove warning on unsized numbers exceeding 32-bits. 2024-09-21 19:19:12 -04:00
t_const_number_unsized_parse.py Tests: Reduce false t_const_number_unsized_parse timeouts (#5577) 2024-11-01 12:39:29 -04:00
t_const_number_v_bad.out Tests: Rename some tests into proper groups. No functional change. 2024-09-21 10:04:58 -04:00
t_const_number_v_bad.py Tests: Rename some tests into proper groups. No functional change. 2024-09-21 10:04:58 -04:00
t_const_number_v_bad.v Tests: Rename some tests into proper groups. No functional change. 2024-09-21 10:04:58 -04:00
t_const_op_red_scope.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_const_op_red_scope.v
t_const_overflow_bad.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_const_overflow_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_const_overflow_bad.v
t_const_sel_sel_extend.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_const_sel_sel_extend.v
t_const_slicesel.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_const_slicesel.v
t_const_slicesel_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_const_slicesel_bad.v
t_const_string_func.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_const_string_func.v
t_constraint.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_constraint.v Support `extern constraint` 2024-12-12 08:16:19 -05:00
t_constraint_assoc_arr_bad.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_constraint_assoc_arr_bad.py Tests: Disable running some lint tests on vltmt 2025-03-29 07:14:45 -04:00
t_constraint_assoc_arr_bad.v Support constraints on associative array user-defined keys (#5671) (#5729) 2025-01-11 12:07:52 -05:00
t_constraint_assoc_arr_basic.py Support associative array basic constrained randomization (#5658) (#5670) 2024-12-12 11:31:54 -05:00
t_constraint_assoc_arr_basic.v Fix foreach of assocArr inside a constraint block (#5727) (#5841) 2025-03-11 13:32:34 -04:00
t_constraint_assoc_arr_others.py Support constraints on associative array user-defined keys (#5671) (#5729) 2025-01-11 12:07:52 -05:00
t_constraint_assoc_arr_others.v Support constraints on associative array user-defined keys (#5671) (#5729) 2025-01-11 12:07:52 -05:00
t_constraint_assoc_arr_wide.py Fix constrained random for > 64-bit associative arrays (#5670) (#5682) 2025-01-09 08:33:38 -05:00
t_constraint_assoc_arr_wide.v Fix constrained random for > 64-bit associative arrays (#5670) (#5682) 2025-01-09 08:33:38 -05:00
t_constraint_before_randc_bad.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_constraint_before_randc_bad.py Add error on randc inside dist 2024-12-14 11:47:46 -05:00
t_constraint_before_randc_bad.v Add error on randc inside dist 2024-12-14 11:47:46 -05:00
t_constraint_dist.py Support basic dist constraints (#5431) 2024-09-12 05:20:36 -07:00
t_constraint_dist.v Fix colon-divide operator without space (#6121). 2025-06-25 04:56:52 -04:00
t_constraint_dist_randc_bad.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_constraint_dist_randc_bad.py Add error on randc inside dist 2024-12-14 11:47:46 -05:00
t_constraint_dist_randc_bad.v Add error on randc inside dist 2024-12-14 11:47:46 -05:00
t_constraint_dyn_queue_basic.py Support basic constrained random for multi-dimensional dynamic array and queue (#5591) 2024-11-08 14:04:58 -05:00
t_constraint_dyn_queue_basic.v Support basic constrained random for multi-dimensional dynamic array and queue (#5591) 2024-11-08 14:04:58 -05:00
t_constraint_extern.py Support `extern constraint` 2024-12-12 08:16:19 -05:00
t_constraint_extern.v Fix backward external constraint error, from recent new support. 2024-12-13 16:54:14 -05:00
t_constraint_extern_bad.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_constraint_extern_bad.py Support `extern constraint` 2024-12-12 08:16:19 -05:00
t_constraint_extern_bad.v Fix backward external constraint error, from recent new support. 2024-12-13 16:54:14 -05:00
t_constraint_foreach.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_constraint_foreach.v Tests: Don't use indices in check_rand (#5561) 2024-10-25 11:06:32 -04:00
t_constraint_inheritance.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_constraint_inheritance.v Tests: Don't use indices in check_rand (#5561) 2024-10-25 11:06:32 -04:00
t_constraint_inheritance_with.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_constraint_inheritance_with.v Tests: Don't use indices in check_rand (#5561) 2024-10-25 11:06:32 -04:00
t_constraint_json_only.out Support simple `checker` blocks (#4066). 2025-04-06 23:42:49 -04:00
t_constraint_json_only.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_constraint_json_only.v Support conditional constraints (#5245) 2024-07-10 11:30:18 -04:00
t_constraint_method_bad.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_constraint_method_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_constraint_method_bad.v
t_constraint_mode.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_constraint_mode.v Support `constraint_mode` (#5338) 2024-08-21 06:16:44 -04:00
t_constraint_mode_bad.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_constraint_mode_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_constraint_mode_bad.v Support `constraint_mode` (#5338) 2024-08-21 06:16:44 -04:00
t_constraint_mode_unsup.out Support `constraint_mode` (#5338) 2024-08-21 06:16:44 -04:00
t_constraint_mode_unsup.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_constraint_mode_unsup.v Support `constraint_mode` (#5338) 2024-08-21 06:16:44 -04:00
t_constraint_nosolver_bad.out Support `extern constraint` 2024-12-12 08:16:19 -05:00
t_constraint_nosolver_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_constraint_operators.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_constraint_operators.v Normalize types in constraints (#5407) 2024-08-27 12:53:44 +02:00
t_constraint_pure.py Support `pure constraint`. 2024-11-09 12:05:26 -05:00
t_constraint_pure.v Support `pure constraint`. 2024-11-09 12:05:26 -05:00
t_constraint_pure_missing_bad.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_constraint_pure_missing_bad.py Support `pure constraint`. 2024-11-09 12:05:26 -05:00
t_constraint_pure_missing_bad.v Support `pure constraint`. 2024-11-09 12:05:26 -05:00
t_constraint_pure_nonabs_bad.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_constraint_pure_nonabs_bad.py Support `pure constraint`. 2024-11-09 12:05:26 -05:00
t_constraint_pure_nonabs_bad.v Support `pure constraint`. 2024-11-09 12:05:26 -05:00
t_constraint_soft_randc_bad.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_constraint_soft_randc_bad.py Add error on randc inside dist 2024-12-14 11:47:46 -05:00
t_constraint_soft_randc_bad.v Add error on randc inside dist 2024-12-14 11:47:46 -05:00
t_constraint_state.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_constraint_state.v Add warning on global constraints (#5625) 2024-11-22 08:47:14 -05:00
t_constraint_struct.py Support Unpacked Structures' Constrained Randomization (#5657) (#5759) 2025-02-03 11:56:00 -05:00
t_constraint_struct.v Support Unpacked Structures' Constrained Randomization (#5657) (#5759) 2025-02-03 11:56:00 -05:00
t_constraint_struct_complex.py Support constrained random for arrays in structs (#5765) (#5802) 2025-02-24 17:51:51 -05:00
t_constraint_struct_complex.v Support constrained random for associative arrays (#5985) (#5986) 2025-05-07 07:07:16 -04:00
t_constraint_unpacked_array.py Support associative array basic constrained randomization (#5658) (#5670) 2024-12-12 11:31:54 -05:00
t_constraint_unpacked_array.v Support associative array basic constrained randomization (#5658) (#5670) 2024-12-12 11:31:54 -05:00
t_constraint_xml.out Fix inline constraints creating class random generator (#5280) 2024-07-19 13:03:48 -04:00
t_constraint_xml.py Add DEPRECATED warning on `--xml-only` and `--xml-output`. 2025-03-21 21:32:05 -04:00
t_constraint_xml.v Support conditional constraints (#5245) 2024-07-10 11:30:18 -04:00
t_continue_do_while_bad.out
t_continue_do_while_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_continue_do_while_bad.v
t_convert2string.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_convert2string.v
t_cover_assert.out
t_cover_assert.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_cover_assert.v
t_cover_const_compare.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_cover_const_compare.v
t_cover_expr.out Internals: Replace unnecessary AstSel::widthp() child node with const in node (#6117) 2025-06-24 11:59:09 -04:00
t_cover_expr.py Support expression coverage (#5719) 2025-02-19 16:42:23 -05:00
t_cover_expr.v Add warning on expression coverage class references (#5870) 2025-03-21 08:55:38 -04:00
t_cover_expr_max.out Internals: Replace unnecessary AstSel::widthp() child node with const in node (#6117) 2025-06-24 11:59:09 -04:00
t_cover_expr_max.py Support expression coverage (#5719) 2025-02-19 16:42:23 -05:00
t_cover_expr_trace.out Internals: Replace unnecessary AstSel::widthp() child node with const in node (#6117) 2025-06-24 11:59:09 -04:00
t_cover_expr_trace.py Change `--trace` to `--trace-vcd`. 2025-04-05 10:46:39 -04:00
t_cover_lib.py Tests: Cleanup some .out filenames. No test coverage change. 2025-04-05 13:46:22 -04:00
t_cover_lib.v
t_cover_lib__1.out Add filtering type option in verilator_coverage (#6030) 2025-05-22 02:42:09 -07:00
t_cover_lib__1_per_instance.out Add filtering type option in verilator_coverage (#6030) 2025-05-22 02:42:09 -07:00
t_cover_lib__2.out Add filtering type option in verilator_coverage (#6030) 2025-05-22 02:42:09 -07:00
t_cover_lib__3.out Add filtering type option in verilator_coverage (#6030) 2025-05-22 02:42:09 -07:00
t_cover_lib__4.out Tests: Cleanup some .out filenames. No test coverage change. 2025-04-05 13:46:22 -04:00
t_cover_lib_c.cpp
t_cover_lib_legacy.py Tests: Cleanup some .out filenames. No test coverage change. 2025-04-05 13:46:22 -04:00
t_cover_line.out Add ternary operator into branch coverage (#5880) 2025-05-19 09:35:35 -04:00
t_cover_line.v Add ternary operator into branch coverage (#5880) 2025-05-19 09:35:35 -04:00
t_cover_line.vlt Add ternary operator into branch coverage (#5880) 2025-05-19 09:35:35 -04:00
t_cover_line_cc.info.out Add ternary operator into branch coverage (#5880) 2025-05-19 09:35:35 -04:00
t_cover_line_cc.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_cover_line_cc_vlt.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_cover_line_expr.out Internals: Replace unnecessary AstSel::widthp() child node with const in node (#6117) 2025-06-24 11:59:09 -04:00
t_cover_line_expr_cc.py Add ternary operator into branch coverage (#5880) 2025-05-19 09:35:35 -04:00
t_cover_line_sc.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_cover_line_trace.out Fix trace hierarchicalName runtime errors (#5668) (#6076). 2025-06-10 20:17:32 -04:00
t_cover_line_trace.py Change `--trace` to `--trace-vcd`. 2025-04-05 10:46:39 -04:00
t_cover_line_tri_gate_cond.py Add ternary operator into branch coverage (#5880) 2025-05-19 09:35:35 -04:00
t_cover_main.out Add filtering type option in verilator_coverage (#6030) 2025-05-22 02:42:09 -07:00
t_cover_main.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_cover_main.v
t_cover_sva_notflat.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_cover_sva_notflat.v
t_cover_sva_trace.out Optimize duplicate timestamps out of traces (#4686) 2025-04-05 14:19:58 -04:00
t_cover_sva_trace.py Change `--trace` to `--trace-vcd`. 2025-04-05 10:46:39 -04:00
t_cover_toggle.out Fix skipped genblocks in toggle coverage (#6010) 2025-05-16 08:24:57 -04:00
t_cover_toggle.py Fix skipped genblocks in toggle coverage (#6010) 2025-05-16 08:24:57 -04:00
t_cover_toggle.v Fix skipped genblocks in toggle coverage (#6010) 2025-05-16 08:24:57 -04:00
t_cover_toggle__points.out Fix skipped genblocks in toggle coverage (#6010) 2025-05-16 08:24:57 -04:00
t_cover_toggle_min.info.out Change to use maximum for cover point aggregation (#5402) 2024-09-09 14:20:18 -04:00
t_cover_toggle_min.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_cover_toggle_min.v Fix toggle coverage aggregation on same line (#5248) 2024-07-14 17:05:58 -04:00
t_cover_toggle_width.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_cover_trace_always.out Fix trace hierarchicalName runtime errors (#5668) (#6076). 2025-06-10 20:17:32 -04:00
t_cover_trace_always.py Change `--trace` to `--trace-vcd`. 2025-04-05 10:46:39 -04:00
t_cover_trace_always.v Fix UNOPTFLAT warnings with `--coverage-trace` and always_comb (#5821). 2025-03-02 20:02:55 -05:00
t_cover_unused_bad.out
t_cover_unused_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_cover_unused_bad.v
t_covergroup_coverpoints_unsup.out Tests: Add coverpoints test (#6118) 2025-06-27 15:47:13 -04:00
t_covergroup_coverpoints_unsup.py Tests: Add coverpoints test (#6118) 2025-06-27 15:47:13 -04:00
t_covergroup_coverpoints_unsup.v Tests: Add coverpoints test (#6118) 2025-06-27 15:47:13 -04:00
t_covergroup_unsup.out Disable symbol from parser: Support redeclaring type as non-type; major parsing change (#2412). 2025-05-18 07:13:37 -04:00
t_covergroup_unsup.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_covergroup_unsup.v Fix parsing (no support) of covergroup functions 2025-04-12 13:07:38 -04:00
t_covergroup_unsup_ign.py Fix parsing (no support) of covergroup functions 2025-04-12 13:07:38 -04:00
t_cuse_forward.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_cuse_forward.v
t_cxx_equal_to.py Change `--trace` to `--trace-vcd`. 2025-04-05 10:46:39 -04:00
t_cxx_equal_to.v Tests: Untabify some tests. 2024-09-01 21:12:37 -04:00
t_debug_emitv.out Internals: Replace unnecessary AstSel::widthp() child node with const in node (#6117) 2025-06-24 11:59:09 -04:00
t_debug_emitv.py Fix --x-initial and --x-assign random stability (#2662) (#5958) (#6018) (#6025) 2025-05-27 09:31:55 -04:00
t_debug_emitv.v Add V3EmitV support for sampled value functions (#5931) 2025-04-11 12:25:56 -04:00
t_debug_emitv_addrids.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_debug_exit_parse.py Tests: Move per-command expect= to instead check logfiles 2024-09-19 18:53:22 -04:00
t_debug_fatalsrc_bad.py Tests: Fix driver.py not stopping on interrupts (#5752) (#5921) 2025-04-06 19:03:39 -04:00
t_debug_fatalsrc_bt_bad.py Tests: Move per-command expect= to instead check logfiles 2024-09-19 18:53:22 -04:00
t_debug_gate.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_debug_gate.v Tests: Close misc internal code coverage holes 2024-07-28 14:18:24 -04:00
t_debug_graph_test.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_debug_graph_test.v
t_debug_inputs.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_debug_inputs.v
t_debug_inputs_a.v
t_debug_inputs_b.v
t_debug_sigsegv_bad.py Tests: Fix driver.py not stopping on interrupts (#5752) (#5921) 2025-04-06 19:03:39 -04:00
t_debug_sigsegv_bt_bad.py Tests: Fix driver.py not stopping on interrupts (#5752) (#5921) 2025-04-06 19:03:39 -04:00
t_debug_trace.py Change `--trace` to `--trace-vcd`. 2025-04-05 10:46:39 -04:00
t_debug_trace.v Tests: Close misc internal code coverage holes 2024-07-28 14:18:24 -04:00
t_debug_width.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_debug_width.py Tests: Disable running some lint tests on vltmt 2025-03-29 07:14:45 -04:00
t_dedupe_clk_gate.out
t_dedupe_clk_gate.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_dedupe_clk_gate.v
t_dedupe_seq_logic.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_dedupe_seq_logic.v
t_define_override.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_define_override.py Apply 'make format' 2025-04-01 11:34:45 +00:00
t_define_override.v Support command-line overriding `define (#5900) (#5908) 2025-04-01 07:33:49 -04:00
t_define_override_empty.out Support command-line overriding `define (#5900) (#5908) 2025-04-01 07:33:49 -04:00
t_define_override_empty.py Support command-line overriding `define (#5900) (#5908) 2025-04-01 07:33:49 -04:00
t_define_override_output.out Support command-line overriding `define (#5900) (#5908) 2025-04-01 07:33:49 -04:00
t_define_override_output.py Apply 'make format' 2025-04-01 11:34:45 +00:00
t_delay.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_delay.v Add PROCINITASSIGN on initial assignments to process variables (#2481). 2025-04-30 22:00:06 -04:00
t_delay_compare.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_delay_compare.v
t_delay_incr.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_delay_incr.v
t_delay_incr_timing.py Tests: Cleanup as --binary implies --timing. No test functional change. 2025-03-29 15:50:07 -04:00
t_delay_stmtdly_bad.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_delay_stmtdly_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_delay_timing.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_delay_var.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_delay_var.v
t_depth_flop.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_depth_flop.v
t_detectarray_1.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_detectarray_1.v
t_detectarray_2.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_detectarray_2.v
t_detectarray_3.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_detectarray_3.v
t_dfg_3676.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_dfg_3676.v
t_dfg_3679.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_dfg_3679.v
t_dfg_3726.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_dfg_3726.v
t_dfg_3817.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_dfg_3817.v
t_dfg_3872.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_dfg_3872.v
t_dfg_4104.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_dfg_4104.v
t_dfg_4943.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_dfg_4943.v
t_dfg_bin_to_one_hot.py Fix DFG binToOneHot table index missing driver (#6100) 2025-06-17 15:53:47 +01:00
t_dfg_bin_to_one_hot.v Fix DFG binToOneHot table index missing driver (#6100) 2025-06-17 15:53:47 +01:00
t_dfg_circular.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_dfg_circular.v
t_dfg_inline_forced.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_dfg_inline_forced.v DFG: Allow inlining of variabels driven from forced vars (#5259) 2024-07-13 12:35:09 +01:00
t_dfg_multidriver_dfg_bad.out
t_dfg_multidriver_dfg_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_dfg_multidriver_dfg_bad.v
t_dfg_multidriver_non_dfg.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_dfg_multidriver_non_dfg.v
t_dfg_peephole.cpp
t_dfg_peephole.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_dfg_peephole.v Fix folding of LteS in DfgPeephole (#6004) 2025-05-14 13:33:20 +01:00
t_dfg_regularize_circular.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_dfg_regularize_circular.v Apply DFG regularization to cyclic graphs (#5142) 2024-05-26 12:01:30 +01:00
t_dfg_regularize_driver_of_sc_var.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_dfg_regularize_driver_of_sc_var.v
t_dfg_stats_patterns.v
t_dfg_stats_patterns_post_inline.out
t_dfg_stats_patterns_post_inline.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_dfg_stats_patterns_pre_inline.out
t_dfg_stats_patterns_pre_inline.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_dfg_unhandled.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_dfg_unhandled.v
t_difftree.a.tree
t_difftree.b.tree
t_difftree.out
t_difftree.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_disable.out Fix coredump on fork inside disable named block by adding an UNSUPPORTED 2025-02-27 21:42:20 -05:00
t_disable.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_disable.v Fix coredump on fork inside disable named block by adding an UNSUPPORTED 2025-02-27 21:42:20 -05:00
t_disable_fork1.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_disable_fork1.v
t_disable_fork2.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_disable_fork2.v Fix missing VlProcess handle in coroutines with splits (#5623) (#5650) 2024-12-02 05:43:26 -05:00
t_disable_fork2_split.py Fix missing VlProcess handle in coroutines with splits (#5623) (#5650) 2024-12-02 05:43:26 -05:00
t_disable_fork3.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_disable_fork3.v Fix compilation error on unreachable disable fork / wait fork (#5339) 2024-08-07 18:44:02 -04:00
t_disable_fork_notiming.out
t_disable_fork_notiming.py Tests: Disable running some lint tests on vltmt 2025-03-29 07:14:45 -04:00
t_disable_fork_notiming.v
t_disable_iff_multi_bad.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_disable_iff_multi_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_disable_iff_multi_bad.v
t_display.out Fix display with multiple string formats (#5311). 2024-09-11 08:41:11 -04:00
t_display.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_display.v Fix display with multiple string formats (#5311). 2024-09-11 08:41:11 -04:00
t_display_bad.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_display_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_display_bad.v
t_display_concat.out
t_display_concat.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_display_concat.v
t_display_concat2.out
t_display_concat2.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_display_concat2.v
t_display_cwide_bad.out
t_display_cwide_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_display_cwide_bad.v
t_display_esc_bad.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_display_esc_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_display_esc_bad.v
t_display_impure.out
t_display_impure.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_display_impure.v
t_display_io.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_display_io.v
t_display_l.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_display_l.v
t_display_mcd.out
t_display_mcd.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_display_mcd.v
t_display_merge.out
t_display_merge.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_display_merge.v
t_display_noopt.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_display_qqq.out
t_display_qqq.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_display_qqq.v
t_display_real.out
t_display_real.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_display_real.v
t_display_real_noopt.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_display_realtime.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_display_realtime.v
t_display_recurse.out
t_display_recurse.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_display_recurse.v
t_display_signed.out
t_display_signed.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_display_signed.v
t_display_signed_noopt.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_display_string.out
t_display_string.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_display_string.v
t_display_time.out Support `$timeformat` with missing arguments (#6113). 2025-06-24 17:30:05 -04:00
t_display_time.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_display_time.v Support `$timeformat` with missing arguments (#6113). 2025-06-24 17:30:05 -04:00
t_display_type_bad.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_display_type_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_display_type_bad.v Fix errors on using string in incorrect format (#5340). 2024-07-09 08:29:22 -04:00
t_display_wide.out
t_display_wide.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_display_wide.v
t_display_wide_bad.out Tests: Improve warning coverage 2025-05-17 16:28:09 -04:00
t_display_wide_bad.py Tests: Improve warning coverage 2025-05-17 16:28:09 -04:00
t_display_wide_bad.v Tests: Improve warning coverage 2025-05-17 16:28:09 -04:00
t_dist_attributes_bad.out Internals: Fix annotation checker not considering base class virtual function annotations (#5459) 2024-09-30 21:34:34 -04:00
t_dist_attributes_bad.py Tests: Fix ubuntu24.04-arm issues 2025-03-22 16:55:53 -04:00
t_dist_cinclude.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_dist_contributors.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_dist_copyright.py Add security policy 2025-05-16 22:08:12 -04:00
t_dist_cppstyle.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_dist_docs_style.py Cleanup documentated option sort order, and enforce with test 2025-04-26 17:14:49 -04:00
t_dist_docs_summary.py Commentary: Changes update 2025-05-22 06:45:39 -04:00
t_dist_error_format.py Support SARIF JSON diagnostic output with `--diagnostics-sarif`. (#6017) 2025-05-17 15:46:15 -04:00
t_dist_fixme.py Tests: Find filenames with fix me 2024-10-10 07:48:23 -04:00
t_dist_getsetorder.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_dist_header_cc.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_dist_install.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_dist_lint_py.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_dist_pl.py Remove driver.pl - deprecated earlier with driver.py 2024-10-13 21:55:31 -04:00
t_dist_portability.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_dist_untracked.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_dist_warn_coverage.py Disable symbol from parser: Support redeclaring type as non-type; major parsing change (#2412). 2025-05-18 07:13:37 -04:00
t_dist_whitespace.py Tests: Fix t_dist_whitespace error message 2024-11-09 20:47:59 -05:00
t_do_not_convert_to_comb.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_do_not_convert_to_comb.v
t_do_while.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_do_while.v
t_dos.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_dos.v
t_dotfiles.py Support multi-thread hierarchical simulation (#2583) (#5871) 2025-03-24 18:39:29 -04:00
t_dpi_2exp_bad.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_dpi_2exp_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_dpi_2exp_bad.v
t_dpi_2exparg_bad.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_dpi_2exparg_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_dpi_2exparg_bad.v
t_dpi_accessors.cpp
t_dpi_accessors.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_dpi_accessors.v
t_dpi_accessors_inc.vh
t_dpi_accessors_macros_inc.vh
t_dpi_arg_inout_type.cpp
t_dpi_arg_inout_type.out
t_dpi_arg_inout_type.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_dpi_arg_inout_type.v
t_dpi_arg_inout_type__Dpi.out
t_dpi_arg_inout_unpack.cpp
t_dpi_arg_inout_unpack.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_dpi_arg_inout_unpack.v
t_dpi_arg_inout_unpack__Dpi.out
t_dpi_arg_input_type.cpp
t_dpi_arg_input_type.out
t_dpi_arg_input_type.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_dpi_arg_input_type.v
t_dpi_arg_input_type__Dpi.out
t_dpi_arg_input_unpack.cpp
t_dpi_arg_input_unpack.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_dpi_arg_input_unpack.v
t_dpi_arg_input_unpack__Dpi.out
t_dpi_arg_output_type.cpp
t_dpi_arg_output_type.out
t_dpi_arg_output_type.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_dpi_arg_output_type.v
t_dpi_arg_output_type__Dpi.out
t_dpi_arg_output_unpack.cpp
t_dpi_arg_output_unpack.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_dpi_arg_output_unpack.v
t_dpi_arg_output_unpack__Dpi.out
t_dpi_argtype_bad.out Tests: Close misc internal code coverage holes 2024-07-28 14:18:24 -04:00
t_dpi_argtype_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_dpi_argtype_bad.v Tests: Close misc internal code coverage holes 2024-07-28 14:18:24 -04:00
t_dpi_binary.py Fix --binary with .cpp PLI filenames under relative directory paths. 2024-09-22 16:47:15 -04:00
t_dpi_binary.v Fix --binary with .cpp PLI filenames under relative directory paths. 2024-09-22 16:47:15 -04:00
t_dpi_binary_c.cpp Fix --binary with .cpp PLI filenames under relative directory paths. 2024-09-22 16:47:15 -04:00
t_dpi_binary_c.h Fix --binary with .cpp PLI filenames under relative directory paths. 2024-09-22 16:47:15 -04:00
t_dpi_context.py Fix dpi context functions (#5788) 2025-02-20 10:15:09 +01:00
t_dpi_context.v Fix dpi context functions (#5788) 2025-02-20 10:15:09 +01:00
t_dpi_context_c.cpp Fix dpi context functions (#5788) 2025-02-20 10:15:09 +01:00
t_dpi_context_noopt.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_dpi_display.out
t_dpi_display.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_dpi_display.v
t_dpi_display_bad.out Tests: Improve warning coverage 2025-05-16 22:32:25 -04:00
t_dpi_display_bad.py Tests: Improve warning coverage 2025-05-16 22:32:25 -04:00
t_dpi_display_bad.v Tests: Improve warning coverage 2025-05-16 22:32:25 -04:00
t_dpi_display_c.cpp
t_dpi_dup_bad.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_dpi_dup_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_dpi_dup_bad.v
t_dpi_export.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_dpi_export.v Support DPI imports and exports with double underscores. 2024-09-22 22:06:39 -04:00
t_dpi_export_bad.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_dpi_export_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_dpi_export_bad.v
t_dpi_export_c.cpp Support DPI imports and exports with double underscores. 2024-09-22 22:06:39 -04:00
t_dpi_export_context2_bad.cpp
t_dpi_export_context2_bad.out
t_dpi_export_context2_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_dpi_export_context2_bad.v
t_dpi_export_context_bad.cpp
t_dpi_export_context_bad.out
t_dpi_export_context_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_dpi_export_context_bad.v
t_dpi_export_noopt.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_dpi_export_scope_bad.cpp
t_dpi_export_scope_bad.out
t_dpi_export_scope_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_dpi_export_scope_bad.v
t_dpi_if_cond.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_dpi_if_cond.v Fix splitting if statements with impure conditions (#5219) 2024-07-02 15:17:10 -04:00
t_dpi_if_cond_c.cpp Fix splitting if statements with impure conditions (#5219) 2024-07-02 15:17:10 -04:00
t_dpi_imp_gen.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_dpi_imp_gen.v
t_dpi_imp_gen_c.cpp
t_dpi_import.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_dpi_import.v Support DPI imports and exports with double underscores. 2024-09-22 22:06:39 -04:00
t_dpi_import_c.cpp Support DPI imports and exports with double underscores. 2024-09-22 22:06:39 -04:00
t_dpi_import_hdr_only.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_dpi_import_mix_bad.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_dpi_import_mix_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_dpi_import_mix_bad.v
t_dpi_instr_count_large.cpp Tests: Rename t_dpi_instr_count_large 2025-05-29 18:58:22 -04:00
t_dpi_instr_count_large.py Tests: Rename t_dpi_instr_count_large 2025-05-29 18:58:22 -04:00
t_dpi_instr_count_large.v Tests: Rename t_dpi_instr_count_large 2025-05-29 18:58:22 -04:00
t_dpi_instr_count_large_hier.py Tests: Rename t_dpi_instr_count_large 2025-05-29 18:58:22 -04:00
t_dpi_lib.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_dpi_lib.v
t_dpi_lib_c.cpp
t_dpi_name_bad.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_dpi_name_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_dpi_name_bad.v Support DPI imports and exports with double underscores. 2024-09-22 22:06:39 -04:00
t_dpi_open.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_dpi_open.v
t_dpi_open_c.cpp
t_dpi_open_elem.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_dpi_open_elem.v
t_dpi_open_elem_c.cpp
t_dpi_open_oob_bad.out Fix casting etc of typedef'ed doubles. 2025-05-04 16:34:37 -04:00
t_dpi_open_oob_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_dpi_open_oob_bad.v
t_dpi_open_oob_bad_c.cpp
t_dpi_open_query.cpp
t_dpi_open_query.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_dpi_open_query.v
t_dpi_open_vecval.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_dpi_open_vecval.v
t_dpi_open_vecval_c.cpp Tests: Fix clang 18 warning 2024-09-07 10:20:59 -04:00
t_dpi_openfirst.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_dpi_openfirst.v
t_dpi_openfirst_c.cpp
t_dpi_qw.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_dpi_qw.v
t_dpi_qw_c.cpp
t_dpi_result_type.cpp
t_dpi_result_type.out
t_dpi_result_type.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_dpi_result_type.v
t_dpi_result_type__Dpi.out
t_dpi_result_type_bad.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_dpi_result_type_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_dpi_result_type_bad.v Support soft unions (#5912) (#5932) 2025-04-12 07:35:37 -04:00
t_dpi_shortcircuit.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_dpi_shortcircuit.v
t_dpi_shortcircuit2.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_dpi_shortcircuit2.v
t_dpi_shortcircuit_c.cpp
t_dpi_string.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_dpi_string.v
t_dpi_string_c.cpp
t_dpi_sys.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_dpi_sys.v
t_dpi_sys_c.cpp
t_dpi_threads.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_dpi_threads.v Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_dpi_threads_c.cpp
t_dpi_threads_collide.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_dpi_type_bad.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_dpi_type_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_dpi_type_bad.v
t_dpi_unpack_bad.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_dpi_unpack_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_dpi_unpack_bad.v
t_dpi_vams.cpp
t_dpi_vams.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_dpi_vams.v
t_dpi_var.cpp
t_dpi_var.out
t_dpi_var.py Tests: Remove file-number hardcoded dependencies. 2024-11-12 21:39:13 -05:00
t_dpi_var.v
t_dpi_var.vlt
t_dpi_var_vlt.out
t_dpi_var_vlt.py Tests: Cleanup some .cpp paths. No test functional change indended. 2025-04-25 20:57:11 -04:00
t_driver_random.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_dump.v Support `$assertcontrol` assertion_type (#5236) 2024-07-10 05:06:13 -04:00
t_dump_dfg.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_dump_json.out Support simple `checker` blocks (#4066). 2025-04-06 23:42:49 -04:00
t_dump_json.py Tests: Fix JSON file number, from earlier commit 2024-12-01 23:00:27 -05:00
t_dump_tree_dot.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_duplicated_gen_blocks_bad.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_duplicated_gen_blocks_bad.py Fix error on duplicated declaration of gen block (#5663) 2024-12-06 07:20:31 -05:00
t_duplicated_gen_blocks_bad.v Fix error on duplicated declaration of gen block (#5663) 2024-12-06 07:20:31 -05:00
t_dynarray.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_dynarray.v Tests: Only != is globally allowed to compare strings 2025-04-03 21:26:53 -04:00
t_dynarray_bad.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_dynarray_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_dynarray_bad.v
t_dynarray_bits.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_dynarray_bits.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_dynarray_bits.v Support 2D dynamic array initialization (#4700) (#5122) 2024-06-08 22:44:45 -04:00
t_dynarray_cast_write.py Fix queue element access (#5551) 2024-10-24 09:40:54 -04:00
t_dynarray_cast_write.v Fix queue element access (#5551) 2024-10-24 09:40:54 -04:00
t_dynarray_concat.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_dynarray_concat.v Tests: Only != is globally allowed to compare strings 2025-04-03 21:26:53 -04:00
t_dynarray_init.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_dynarray_init.v
t_dynarray_method.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_dynarray_method.v Tests: Only != is globally allowed to compare strings 2025-04-03 21:26:53 -04:00
t_dynarray_method_bad.out Tests: Improve warning coverage 2025-05-16 22:32:25 -04:00
t_dynarray_method_bad.py Fix reduction methods for verilated types (#5542) 2024-10-18 19:51:44 -04:00
t_dynarray_method_bad.v Tests: Improve warning coverage 2025-05-16 22:32:25 -04:00
t_dynarray_multid.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_dynarray_multid.v Support appending to queue via `[]` (#5421) 2024-09-02 09:45:47 -04:00
t_dynarray_param.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_dynarray_param.v
t_dynarray_unpacked.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_dynarray_unpacked.v
t_embed1.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_embed1.v
t_embed1_c.cpp
t_embed1_child.v
t_embed1_wrap.v
t_emit_accessors.cpp Add `--emit-accessors` (#5182) (#5227) 2024-07-06 13:12:53 +01:00
t_emit_accessors.py Tests: Execute t_emit_accessors (#5689) (#5688) 2024-12-19 15:01:57 -05:00
t_emit_accessors.v Add `--emit-accessors` (#5182) (#5227) 2024-07-06 13:12:53 +01:00
t_emit_constw.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_emit_constw.v
t_emit_memb_limit.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_enum.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_enum.v
t_enum_bad_cell.out
t_enum_bad_cell.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_enum_bad_cell.v
t_enum_bad_circdecl.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_enum_bad_circdecl.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_enum_bad_circdecl.v
t_enum_bad_dup.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_enum_bad_dup.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_enum_bad_dup.v
t_enum_bad_hide.out
t_enum_bad_hide.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_enum_bad_hide.v
t_enum_bad_value.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_enum_bad_value.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_enum_bad_value.v
t_enum_bad_wrap.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_enum_bad_wrap.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_enum_bad_wrap.v
t_enum_base_bad.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_enum_base_bad.py Add error on illegal enum base type (#3010). 2024-11-05 00:58:46 -05:00
t_enum_base_bad.v Add error on illegal enum base type (#3010). 2024-11-05 00:58:46 -05:00
t_enum_const_methods.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_enum_const_methods.v
t_enum_enumvalue_struct_bad.out
t_enum_enumvalue_struct_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_enum_enumvalue_struct_bad.v
t_enum_func.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_enum_func.v
t_enum_huge_methods.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_enum_huge_methods.v Safely support non-overlapping blocking/non-blocking assignments (#6137) 2025-06-28 20:45:45 +01:00
t_enum_huge_methods_bad.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_enum_huge_methods_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_enum_huge_methods_bad.v
t_enum_int.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_enum_int.v
t_enum_large_methods.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_enum_large_methods.v Tests: Fix string !== for other simulators. 2024-10-03 18:14:53 -04:00
t_enum_name2.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_enum_name2.v
t_enum_name3.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_enum_name3.v
t_enum_name_sformatf.py Fix enum name method (#5563) 2024-10-25 18:49:45 -04:00
t_enum_name_sformatf.v Fix enum name method (#5563) 2024-10-25 18:49:45 -04:00
t_enum_overlap_bad.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_enum_overlap_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_enum_overlap_bad.v
t_enum_param_class.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_enum_param_class.v
t_enum_public.cpp
t_enum_public.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_enum_public.v Tests: Close misc internal code coverage holes 2024-07-28 14:18:24 -04:00
t_enum_recurse_bad.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_enum_recurse_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_enum_recurse_bad.v
t_enum_recurse_bad2.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_enum_recurse_bad2.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_enum_recurse_bad2.v
t_enum_size.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_enum_size.v Tests: Remove unused clk input 2024-10-07 21:44:07 -04:00
t_enum_type_bad.out Fix string to be more standard (#5082) (#5083). 2024-05-31 21:51:12 -04:00
t_enum_type_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_enum_type_bad.v
t_enum_type_methods.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_enum_type_methods.v Tests: Fix string !== for other simulators. 2024-10-03 18:14:53 -04:00
t_enum_type_methods_bad.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_enum_type_methods_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_enum_type_methods_bad.v
t_enum_type_nomethod_bad.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_enum_type_nomethod_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_enum_type_nomethod_bad.v
t_enum_type_pins.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_enum_type_pins.v
t_enum_value_assign.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_enum_value_assign.v
t_enum_x_bad.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_enum_x_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_enum_x_bad.v
t_enumeration.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_enumeration.v
t_eq_wild.py Fix wildcard equality and inside operators for non-fourstate expressions (#5673) 2024-12-12 14:51:48 +01:00
t_eq_wild.v Fix wildcard equality and inside operators for non-fourstate expressions (#5673) 2024-12-12 14:51:48 +01:00
t_eq_wild_unsup.out Fix wildcard equality and inside operators for non-fourstate expressions (#5673) 2024-12-12 14:51:48 +01:00
t_eq_wild_unsup.py Fix wildcard equality and inside operators for non-fourstate expressions (#5673) 2024-12-12 14:51:48 +01:00
t_eq_wild_unsup.v Fix wildcard equality and inside operators for non-fourstate expressions (#5673) 2024-12-12 14:51:48 +01:00
t_event.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_event.v Fix clearing trigger of events with no sentrees (#5426) 2024-09-02 18:19:49 +02:00
t_event_class_fire.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_event_class_fire.py Add assertion on firing event inside class (#5597) 2024-11-09 09:28:40 -05:00
t_event_class_fire.v Add assertion on firing event inside class (#5597) 2024-11-09 09:28:40 -05:00
t_event_control.out
t_event_control.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_event_control.v
t_event_control_assign.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_event_control_assign.v
t_event_control_expr.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_event_control_expr.v Add error on instances without parenthesis. 2024-09-22 12:25:35 -04:00
t_event_control_expr_unsup.out
t_event_control_expr_unsup.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_event_control_pass.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_event_control_pass.v
t_event_control_prev_name_collision.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_event_control_prev_name_collision.v Tests: Untabify some tests. 2024-09-01 21:12:37 -04:00
t_event_control_scope_var.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_event_control_scope_var.v
t_event_control_star.out
t_event_control_star.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_event_control_star.v
t_event_control_timing.out
t_event_control_timing.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_event_copy.out
t_event_copy.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_event_copy.v
t_event_method_bad.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_event_method_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_event_method_bad.v
t_exit.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_exit.v
t_expect.out
t_expect.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_expect.v
t_export_packed_struct.cpp
t_export_packed_struct.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_export_packed_struct.v Support soft unions (#5912) (#5932) 2025-04-12 07:35:37 -04:00
t_export_packed_struct2.cpp
t_export_packed_struct2.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_export_packed_struct2.v Support soft unions (#5912) (#5932) 2025-04-12 07:35:37 -04:00
t_expr_incr_unsup.out
t_expr_incr_unsup.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_expr_incr_unsup.v
t_exprstmt_on_lhs_of_nba.py Fix inlined expression with assignment under LHS of NBA (#5736) (#5740) 2025-01-20 07:23:10 -05:00
t_exprstmt_on_lhs_of_nba.v Fix inlined expression with assignment under LHS of NBA (#5736) (#5740) 2025-01-20 07:23:10 -05:00
t_extend.py Tests: Rename t_extend_c_class 2025-03-28 22:40:21 -04:00
t_extend.v
t_extend_c_class.py Tests: Rename t_extend_c_class 2025-03-28 22:40:21 -04:00
t_extend_c_class.v Tests: Rename t_extend_c_class 2025-03-28 22:40:21 -04:00
t_extend_c_class_c.h Tests: Rename t_extend_c_class 2025-03-28 22:40:21 -04:00
t_extend_class.py Support `systemc_interface and related inside `class`. 2025-03-28 22:40:21 -04:00
t_extend_class.v Add `systemc_header_post 2025-03-28 22:40:21 -04:00
t_extract_static_const.out
t_extract_static_const.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_extract_static_const.v
t_extract_static_const_multimodule.out
t_extract_static_const_multimodule.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_extract_static_const_multimodule.v
t_extract_static_const_no_merge.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_fallback_bad.out Fix method calls without parenthesis (#6127). 2025-06-26 18:16:21 -04:00
t_fallback_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_fallback_bad.v Add error on instances without parenthesis. 2024-09-22 12:25:35 -04:00
t_final.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_final.v
t_flag_bboxsys.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_flag_bboxsys.v
t_flag_binary.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_flag_binary_parallel.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_flag_build.py Change `--trace` to `--trace-vcd`. 2025-04-05 10:46:39 -04:00
t_flag_build_bad.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_flag_build_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_flag_build_bad2.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_flag_build_dep_bin.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_flag_build_dep_bin.v
t_flag_build_jobs_and_j.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_flag_build_jobs_bad.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_flag_build_jobs_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_flag_comp_limit_parens.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_flag_comp_limit_parens.v
t_flag_compiler.v
t_flag_compiler_bad.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_flag_compiler_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_flag_compiler_clang.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_flag_compiler_gcc.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_flag_compiler_msvc.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_flag_context_bad.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_flag_context_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_flag_context_bad.v
t_flag_csplit.py Change `--trace` to `--trace-vcd`. 2025-04-05 10:46:39 -04:00
t_flag_csplit.v Do not use function locals in SenExprBuilder (#5822) 2025-03-02 16:13:59 +00:00
t_flag_csplit_eval.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_flag_csplit_eval.v
t_flag_csplit_groups.py Fix trace hierarchicalName runtime errors (#5668) (#6076). 2025-06-10 20:17:32 -04:00
t_flag_csplit_off.py Change `--trace` to `--trace-vcd`. 2025-04-05 10:46:39 -04:00
t_flag_debug_noleak.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_flag_debug_noleak.v
t_flag_debugi9.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_flag_debugi9.v
t_flag_decoration.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_flag_decoration.v
t_flag_decoration_no.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_flag_decorations_bad.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_flag_decorations_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_flag_decorations_node.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_flag_define.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_flag_define.v
t_flag_define.vc
t_flag_deprecated_bad.out
t_flag_deprecated_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_flag_deprecated_bad.v
t_flag_errorlimit_bad.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_flag_errorlimit_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_flag_errorlimit_bad.v
t_flag_expand_limit.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_flag_expand_limit.v
t_flag_f.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_flag_f.v
t_flag_f.vc
t_flag_f__2.vc
t_flag_f__3.v
t_flag_f_bad.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_flag_f_bad.py Tests: Rename some tests 2024-11-10 20:00:16 -05:00
t_flag_f_bad_cmt.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_flag_f_bad_cmt.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_flag_f_bad_cmt.v
t_flag_f_bad_cmt.vc
t_flag_f_bad_getenvend.out Tests: Improve warning coverage 2025-05-17 16:28:09 -04:00
t_flag_f_bad_getenvend.py Tests: Improve warning coverage 2025-05-17 16:28:09 -04:00
t_flag_f_bad_getenvend.vc Tests: Improve warning coverage 2025-05-17 16:28:09 -04:00
t_flag_fi.cpp
t_flag_fi.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_flag_fi.v
t_flag_fi_h.h
t_flag_future.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_flag_future.v
t_flag_future_bad.out Add BADVLTPRAGMA on unknown Verilator pragmas (#5945). 2025-04-29 18:18:54 -04:00
t_flag_future_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_flag_generate_key.py Tests: Move per-command expect= to instead check logfiles 2024-09-19 18:53:22 -04:00
t_flag_getenv.py Tests: Move per-command expect= to instead check logfiles 2024-09-19 18:53:22 -04:00
t_flag_getenv.v
t_flag_help.py Tests: Fix driver.py not stopping on interrupts (#5752) (#5921) 2025-04-06 19:03:39 -04:00
t_flag_help_valgrind.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_flag_hier0_bad.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_flag_hier0_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_flag_hier1_bad.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_flag_hier1_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_flag_hierarchical_threads_bad.out Add `--hierarchical-threads` (#6037) 2025-05-26 09:37:35 -04:00
t_flag_hierarchical_threads_bad.py Add `--hierarchical-threads` (#6037) 2025-05-26 09:37:35 -04:00
t_flag_i_empty.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_flag_i_empty.v
t_flag_incdir.py Support `+incdir` with multiple directories. 2025-01-05 19:30:39 -05:00
t_flag_incdir.v Support `+incdir` with multiple directories. 2025-01-05 19:30:39 -05:00
t_flag_instr_count_dpi_bad.py Tests: Move per-command expect= to instead check logfiles 2024-09-19 18:53:22 -04:00
t_flag_invalid2_bad.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_flag_invalid2_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_flag_invalid_bad.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_flag_invalid_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_flag_j_hier.py Fix -j option without argument in hierarchical verilation (#5514) 2024-10-07 07:31:59 -04:00
t_flag_j_hier.v Fix -j option without argument in hierarchical verilation (#5514) 2024-10-07 07:31:59 -04:00
t_flag_language.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_flag_language.v
t_flag_language_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_flag_ldflags.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_flag_ldflags.v
t_flag_ldflags_a.cpp
t_flag_ldflags_c.cpp
t_flag_ldflags_so.cpp
t_flag_lib.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_flag_lib.v
t_flag_lib_dpi.cpp
t_flag_lib_dpi.mk
t_flag_lib_dpi.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_flag_lib_dpi.v
t_flag_lib_dpi_main.cpp
t_flag_libcreate_bad.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_flag_libcreate_bad.py Add error on illegal `--prefix` etc. values (#5507). 2024-11-26 21:06:43 -05:00
t_flag_libinc.v
t_flag_main.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_flag_main.v
t_flag_main_sc_bad.out
t_flag_main_sc_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_flag_main_top_name.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_flag_main_top_name.v
t_flag_main_top_name_empty.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_flag_make_bad.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_flag_make_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_flag_make_cmake.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_flag_make_cmake.v
t_flag_make_cmake_sc.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_flag_make_cmake_sc.v
t_flag_make_gmake.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_flag_make_json.py Apply 'make format' 2025-03-11 23:58:06 +00:00
t_flag_mmd.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_flag_mmd.v
t_flag_modprefix_bad.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_flag_modprefix_bad.py Add error on illegal `--prefix` etc. values (#5507). 2024-11-26 21:06:43 -05:00
t_flag_names.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_flag_names.v
t_flag_no_unlimited_stack.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_flag_no_unlimited_stack.v
t_flag_nofile_bad.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_flag_nofile_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_flag_nomod_bad.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_flag_nomod_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_flag_nomod_bad.v
t_flag_noop_bad.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_flag_noop_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_flag_noop_bad.v
t_flag_only_bad.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_flag_only_bad.py Add DEPRECATED warning on `--xml-only` and `--xml-output`. 2025-03-21 21:32:05 -04:00
t_flag_only_bad2.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_flag_only_bad2.py Add DEPRECATED warning on `--xml-only` and `--xml-output`. 2025-03-21 21:32:05 -04:00
t_flag_only_bad3.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_flag_only_bad3.py Add DEPRECATED warning on `--xml-only` and `--xml-output`. 2025-03-21 21:32:05 -04:00
t_flag_output_groups_bad.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_flag_output_groups_bad.py Change `--output-groups` to default to value of `--build-jobs`. 2025-02-24 20:38:08 -05:00
t_flag_parameter.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_flag_parameter.v Support 1-bit params with -G and -pvalue (#6051) (#6082) 2025-06-10 17:39:13 -04:00
t_flag_parameter.vc Support 1-bit params with -G and -pvalue (#6051) (#6082) 2025-06-10 17:39:13 -04:00
t_flag_parameter_bad.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_flag_parameter_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_flag_parameter_hier.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_flag_parameter_hier.v
t_flag_parameter_pkg.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_flag_parameter_pkg.v Tests: Remove unused clk input 2024-10-07 21:44:07 -04:00
t_flag_prefix.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_flag_prefix.v
t_flag_prefix_bad.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_flag_prefix_bad.py Add error on illegal `--prefix` etc. values (#5507). 2024-11-26 21:06:43 -05:00
t_flag_quiet_exit.py Tests: Move per-command expect= to instead check logfiles 2024-09-19 18:53:22 -04:00
t_flag_quiet_stats.py Tests: Move per-command expect= to instead check logfiles 2024-09-19 18:53:22 -04:00
t_flag_quiet_stats.v
t_flag_quiet_stats2.py Tests: Move per-command expect= to instead check logfiles 2024-09-19 18:53:22 -04:00
t_flag_quiet_stats3.py Tests: Move per-command expect= to instead check logfiles 2024-09-19 18:53:22 -04:00
t_flag_relinc.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_flag_relinc.v
t_flag_runtime_debug.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_flag_skipidentical.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_flag_skipidentical.v
t_flag_stats.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_flag_stats.v
t_flag_structs_packed.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_flag_structs_packed.v
t_flag_structs_packed_bad.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_flag_structs_packed_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_flag_suggest.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_flag_suggest.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_flag_supported.py Tests: Move per-command expect= to instead check logfiles 2024-09-19 18:53:22 -04:00
t_flag_supported_1.out Tests: Move per-command expect= to instead check logfiles 2024-09-19 18:53:22 -04:00
t_flag_supported_empty.out Tests: Move per-command expect= to instead check logfiles 2024-09-19 18:53:22 -04:00
t_flag_threads_bad.out Tests: Improve warning coverage 2025-05-16 22:32:25 -04:00
t_flag_threads_bad.py Tests: Improve warning coverage 2025-05-16 22:32:25 -04:00
t_flag_threads_bad2.out Tests: Improve warning coverage 2025-05-16 22:32:25 -04:00
t_flag_threads_bad2.py Tests: Improve warning coverage 2025-05-16 22:32:25 -04:00
t_flag_threads_dpi_bad.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_flag_threads_dpi_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_flag_timescale.out
t_flag_timescale.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_flag_timescale.v
t_flag_timescale_override.out
t_flag_timescale_override.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_flag_timescale_override.v
t_flag_timescale_override2.out
t_flag_timescale_override2.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_flag_topmodule.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_flag_topmodule.v
t_flag_topmodule_bad.out
t_flag_topmodule_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_flag_topmodule_bad2.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_flag_topmodule_bad2.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_flag_topmodule_inline.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_flag_topmodule_inline.v
t_flag_trace_threads_bad.out Tests: Improve warning coverage 2025-05-16 22:32:25 -04:00
t_flag_trace_threads_bad.py Tests: Improve warning coverage 2025-05-16 22:32:25 -04:00
t_flag_values_bad.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_flag_values_bad.py Add `--preproc-token-limit` (#5768) 2025-02-07 10:32:12 -05:00
t_flag_values_deprecated.out
t_flag_values_deprecated.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_flag_verilate.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_flag_verilate_threads_bad.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_flag_verilate_threads_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_flag_version.py Tests: Move per-command expect= to instead check logfiles 2024-09-19 18:53:22 -04:00
t_flag_werror.v
t_flag_werror_bad1.out
t_flag_werror_bad1.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_flag_werror_bad2.out
t_flag_werror_bad2.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_flag_werror_bad3.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_flag_werror_bad3.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_flag_wfatal.out
t_flag_wfatal.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_flag_wfatal.v
t_flag_woff.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_flag_woff.v
t_flag_woff_bad.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_flag_woff_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_flag_wpedantic_bad.out Support `specparam` (#5767). 2025-06-28 08:23:43 -04:00
t_flag_wpedantic_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_flag_wpedantic_bad.v
t_flag_wwarn_bad.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_flag_wwarn_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_flag_x_assign_bad.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_flag_x_assign_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_flag_x_initial_bad.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_flag_x_initial_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_flag_xinitial_0.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_flag_xinitial_0.v
t_flag_xinitial_unique.py Fix --x-initial and --x-assign random stability (#2662) (#5958) (#6018) (#6025) 2025-05-27 09:31:55 -04:00
t_flag_xinitial_unique.v
t_for_assign.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_for_assign.v
t_for_break.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_for_break.v
t_for_comma.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_for_comma.v
t_for_count.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_for_count.v
t_for_disable_dot.out
t_for_disable_dot.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_for_disable_dot.v
t_for_funcbound.py Tests: Move per-command expect= to instead check logfiles 2024-09-19 18:53:22 -04:00
t_for_funcbound.v
t_for_init_bug.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_for_init_bug.v
t_for_local.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_for_local.v
t_for_loop.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_for_loop.v
t_force.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_force.v Safely support non-overlapping blocking/non-blocking assignments (#6137) 2025-06-28 20:45:45 +01:00
t_force_assign.py Fix handling forced assigns in V3Life (#5757) 2025-01-28 07:30:40 -05:00
t_force_assign.v Fix handling forced assigns in V3Life (#5757) 2025-01-28 07:30:40 -05:00
t_force_bad_rw.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_force_bad_rw.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_force_bad_rw.v
t_force_chained.out Support force/release with a variable reference (#5721) (#5810) 2025-03-04 10:12:02 -05:00
t_force_chained.py Support force/release with a variable reference (#5721) (#5810) 2025-03-04 10:12:02 -05:00
t_force_chained.v Support force/release with a variable reference (#5721) (#5810) 2025-03-04 10:12:02 -05:00
t_force_func.out Support force/release with a variable reference (#5721) (#5810) 2025-03-04 10:12:02 -05:00
t_force_func.py Support force/release with a variable reference (#5721) (#5810) 2025-03-04 10:12:02 -05:00
t_force_func.v Support force/release with a variable reference (#5721) (#5810) 2025-03-04 10:12:02 -05:00
t_force_immediate_release.py Support force/release with a variable reference (#5721) (#5810) 2025-03-04 10:12:02 -05:00
t_force_immediate_release.v Support force/release with a variable reference (#5721) (#5810) 2025-03-04 10:12:02 -05:00
t_force_initial.py Support force/release with a variable reference (#5721) (#5810) 2025-03-04 10:12:02 -05:00
t_force_initial.v Support force/release with a variable reference (#5721) (#5810) 2025-03-04 10:12:02 -05:00
t_force_mid.cpp Tests: Use VM_PREFIX 2024-11-23 22:02:19 -05:00
t_force_mid.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_force_mid.v
t_force_multi.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_force_multi.v
t_force_port_alias.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_force_port_alias.v
t_force_release.out Support force/release with a variable reference (#5721) (#5810) 2025-03-04 10:12:02 -05:00
t_force_release.py Support force/release with a variable reference (#5721) (#5810) 2025-03-04 10:12:02 -05:00
t_force_release.v Support force/release with a variable reference (#5721) (#5810) 2025-03-04 10:12:02 -05:00
t_force_release_net.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_force_release_net.v
t_force_release_net_reverse.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_force_release_net_trace.out Optimize duplicate timestamps out of traces (#4686) 2025-04-05 14:19:58 -04:00
t_force_release_net_trace.py Change `--trace` to `--trace-vcd`. 2025-04-05 10:46:39 -04:00
t_force_release_var.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_force_release_var.v
t_force_release_var_reverse.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_force_release_var_trace.out Optimize duplicate timestamps out of traces (#4686) 2025-04-05 14:19:58 -04:00
t_force_release_var_trace.py Change `--trace` to `--trace-vcd`. 2025-04-05 10:46:39 -04:00
t_force_rhs_ref.py Support force/release with a variable reference (#5721) (#5810) 2025-03-04 10:12:02 -05:00
t_force_rhs_ref.v Support force/release with a variable reference (#5721) (#5810) 2025-03-04 10:12:02 -05:00
t_force_rhs_ref_multiple.out Support force/release with a variable reference (#5721) (#5810) 2025-03-04 10:12:02 -05:00
t_force_rhs_ref_multiple.py Support force/release with a variable reference (#5721) (#5810) 2025-03-04 10:12:02 -05:00
t_force_rhs_ref_multiple.v Support force/release with a variable reference (#5721) (#5810) 2025-03-04 10:12:02 -05:00
t_force_subnet.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_force_subnet.v
t_force_subvar.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_force_subvar.v
t_force_tri.out
t_force_tri.py Tests: Disable running some lint tests on vltmt 2025-03-29 07:14:45 -04:00
t_force_tri.v
t_forceable_net.cpp
t_forceable_net.v
t_forceable_net.vlt
t_forceable_net_cmt.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_forceable_net_cmt_trace.py Tests: Cleanup some .out filenames. No test coverage change. 2025-04-05 13:46:22 -04:00
t_forceable_net_trace.vcd.out Tests: Cleanup some .out filenames. No test coverage change. 2025-04-05 13:46:22 -04:00
t_forceable_net_vlt.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_forceable_net_vlt_trace.py Tests: Cleanup some .out filenames. No test coverage change. 2025-04-05 13:46:22 -04:00
t_forceable_var.cpp
t_forceable_var.v
t_forceable_var.vlt
t_forceable_var_cmt.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_forceable_var_cmt_trace.py Tests: Cleanup some .out filenames. No test coverage change. 2025-04-05 13:46:22 -04:00
t_forceable_var_trace.vcd.out Tests: Cleanup some .out filenames. No test coverage change. 2025-04-05 13:46:22 -04:00
t_forceable_var_vlt.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_forceable_var_vlt_trace.py Tests: Cleanup some .out filenames. No test coverage change. 2025-04-05 13:46:22 -04:00
t_foreach.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_foreach.v Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_foreach_array.py Fix `foreach` with 2-D queues and dynamic arrays (#5525) (#5529) 2024-10-10 10:50:37 -04:00
t_foreach_array.v Fix foreach mixed array (#5655) (#5656) 2024-12-03 07:57:50 -05:00
t_foreach_bad.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_foreach_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_foreach_bad.v
t_foreach_blkname.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_foreach_blkname.v
t_foreach_class.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_foreach_class.v
t_foreach_const.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_foreach_const.v Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_foreach_iface.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_foreach_iface.v
t_foreach_nindex_bad.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_foreach_nindex_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_foreach_nindex_bad.v
t_foreach_type_bad.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_foreach_type_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_foreach_type_bad.v
t_fork.out
t_fork.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_fork.v
t_fork_bbox.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_fork_bbox.v
t_fork_block_item_declaration.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_fork_block_item_declaration.v
t_fork_dynscope.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_fork_dynscope.v
t_fork_dynscope_interface.py Fix delays inside interface functions, and classes inside interfaces (#5846). 2025-03-30 16:40:22 -04:00
t_fork_dynscope_interface.v Fix delayed assignment malformed LHS assertion (#5904). 2025-03-30 17:38:54 -04:00
t_fork_dynscope_out.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_fork_dynscope_out.v Fix forks capturing non-input ports in tasks (#5237) (#5343) 2024-08-08 21:55:46 +01:00
t_fork_dynscope_unsup.out Fix forks capturing non-input ports in tasks (#5237) (#5343) 2024-08-08 21:55:46 +01:00
t_fork_dynscope_unsup.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_fork_dynscope_unsup.v Fix forks capturing non-input ports in tasks (#5237) (#5343) 2024-08-08 21:55:46 +01:00
t_fork_func2_bad.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_fork_func2_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_fork_func2_bad.v
t_fork_func_bad.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_fork_func_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_fork_func_bad.v
t_fork_initial.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_fork_initial.v
t_fork_join_none_any_nested.py Tests: Cleanup as --binary implies --timing. No test functional change. 2025-03-29 15:50:07 -04:00
t_fork_join_none_any_nested.v
t_fork_join_none_class_cap.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_fork_join_none_class_cap.v
t_fork_join_none_virtual.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_fork_join_none_virtual.v Fix coroutines without awaits to have a co_return (#4208) (#5175) 2024-06-12 15:13:52 -04:00
t_fork_jumpblock.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_fork_jumpblock.v
t_fork_label.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_fork_label.v
t_fork_label_timing.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_fork_none_var.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_fork_none_var.v
t_fork_output_arg.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_fork_output_arg.v
t_fork_port.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_fork_port.v
t_fork_repeat.py Fix false LIFETIME warning on `repeat` in `fork-join` (#5456). 2024-09-18 21:20:17 -04:00
t_fork_repeat.v Fix false LIFETIME warning on `repeat` in `fork-join` (#5456). 2024-09-18 21:20:17 -04:00
t_fork_repeat_reset.py Fix vlSelf error on fork repeats (#5927). 2025-04-26 09:52:44 -04:00
t_fork_repeat_reset.v Fix vlSelf error on fork repeats (#5927). 2025-04-26 09:52:44 -04:00
t_fork_timing.py Tests: Cleanup as --binary implies --timing. No test functional change. 2025-03-29 15:50:07 -04:00
t_format_wide_decimal.out
t_format_wide_decimal.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_format_wide_decimal.v Add PROCINITASSIGN on initial assignments to process variables (#2481). 2025-04-30 22:00:06 -04:00
t_forward_nested_typedef.py Fix type_id package scope resolution (#5826) 2025-03-06 17:41:27 -05:00
t_forward_nested_typedef.v Fix class typedef elaboration (#6080) 2025-06-10 12:03:26 -04:00
t_func.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_func.v
t_func_arg_complex.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_func_arg_complex.v
t_func_automatic_clear.py Fix reset of automatic function variables (#5747). 2025-02-25 22:48:53 -05:00
t_func_automatic_clear.v Fix reset of automatic function variables (#5747). 2025-02-25 22:48:53 -05:00
t_func_bad.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_func_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_func_bad.v
t_func_bad_width.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_func_bad_width.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_func_bad_width.v
t_func_begin2.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_func_begin2.v
t_func_call_order.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_func_call_order.v
t_func_check.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_func_check.v
t_func_complex.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_func_complex.v
t_func_complex_noinl.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_func_cond.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_func_cond.v Internals: Fix removing nodes in V3Life (#5365) 2024-08-14 09:23:24 +02:00
t_func_const.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_func_const.v
t_func_const2_bad.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_func_const2_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_func_const2_bad.v Add error on instances without parenthesis. 2024-09-22 12:25:35 -04:00
t_func_const3_bad.out
t_func_const3_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_func_const3_bad.v Add error on instances without parenthesis. 2024-09-22 12:25:35 -04:00
t_func_const_bad.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_func_const_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_func_const_bad.v
t_func_const_packed_array_bad.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_func_const_packed_array_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_func_const_packed_array_bad.v
t_func_const_packed_struct_bad.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_func_const_packed_struct_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_func_const_packed_struct_bad.v
t_func_const_packed_struct_bad2.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_func_const_packed_struct_bad2.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_func_const_packed_struct_bad2.v
t_func_const_struct_bad.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_func_const_struct_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_func_const_struct_bad.v
t_func_crc.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_func_crc.v
t_func_default_warn.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_func_default_warn.v
t_func_defaults.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_func_defaults.v
t_func_dotted.v Add error on instances without parenthesis. 2024-09-22 12:25:35 -04:00
t_func_dotted_inl0.out
t_func_dotted_inl0.py Support simple `checker` blocks (#4066). 2025-04-06 23:42:49 -04:00
t_func_dotted_inl0.vlt
t_func_dotted_inl0_vlt.out
t_func_dotted_inl0_vlt.py Apply 'make format' 2024-11-13 03:12:11 +00:00
t_func_dotted_inl1.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_func_dotted_inl1.vlt
t_func_dotted_inl1_vlt.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_func_dotted_inl2.out
t_func_dotted_inl2.py Tests: Remove file-number hardcoded dependencies. 2024-11-12 21:39:13 -05:00
t_func_dotted_inl2.vlt
t_func_dotted_inl2_vlt.out
t_func_dotted_inl2_vlt.py Tests: Remove file-number hardcoded dependencies. 2024-11-12 21:39:13 -05:00
t_func_endian.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_func_endian.v
t_func_first.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_func_first.v
t_func_flip.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_func_flip.v
t_func_gen.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_func_gen.v
t_func_graphcirc.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_func_graphcirc.v
t_func_grey.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_func_grey.v
t_func_impure_bad.out
t_func_impure_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_func_impure_bad.v
t_func_inconly.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_func_inconly.v
t_func_inout_bit_sel.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_func_inout_bit_sel.v
t_func_io_order.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_func_io_order.v Tests: Fix --verbose broken display 2024-09-01 21:01:07 -04:00
t_func_lib.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_func_lib.v
t_func_lib_sub.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_func_lib_sub.v
t_func_lib_sub_timing.py Tests: Cleanup as --binary implies --timing. No test functional change. 2025-03-29 15:50:07 -04:00
t_func_link.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_func_link.v
t_func_many_return.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_func_many_return.v
t_func_mlog2.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_func_mlog2.v
t_func_modify_input.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_func_modify_input.v
t_func_named.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_func_named.v
t_func_no_lifetime_bad.out Tests: Remove unused clk input 2024-10-07 21:44:07 -04:00
t_func_no_lifetime_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_func_no_lifetime_bad.v Tests: Remove unused clk input 2024-10-07 21:44:07 -04:00
t_func_no_paren.py Fix method calls without parenthesis (#6127). 2025-06-26 18:16:21 -04:00
t_func_no_paren.v Fix method calls without parenthesis (#6127). 2025-06-26 18:16:21 -04:00
t_func_no_parentheses_bad.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_func_no_parentheses_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_func_no_parentheses_bad.v Tests: Remove unused clk input 2024-10-07 21:44:07 -04:00
t_func_noinl.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_func_noinl.v
t_func_numones.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_func_numones.v
t_func_outfirst.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_func_outfirst.v
t_func_outp.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_func_outp.v
t_func_paramed.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_func_paramed.v
t_func_plog.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_func_plog.v
t_func_public.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_func_public.v
t_func_public_trace.py Change `--trace` to `--trace-vcd`. 2025-04-05 10:46:39 -04:00
t_func_rand.cpp
t_func_rand.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_func_rand.v
t_func_range.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_func_range.v
t_func_real_abs.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_func_real_abs.v
t_func_real_exprstmt.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_func_real_exprstmt.v
t_func_real_param.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_func_real_param.v
t_func_recurse.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_func_recurse.v
t_func_recurse2.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_func_recurse2.v
t_func_recurse_param.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_func_recurse_param.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_func_recurse_param.v
t_func_recurse_param_bad.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_func_recurse_param_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_func_recurse_param_bad.v
t_func_redef.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_func_redef.v
t_func_ref.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_func_ref.v Tests: Verify function ref (#3385) 2024-11-25 20:38:41 -05:00
t_func_ref_arg.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_func_ref_arg.v
t_func_ref_bad.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_func_ref_bad.py Automatically split some packed variables (#5843) 2025-03-09 10:31:01 -04:00
t_func_ref_bad.v
t_func_ref_noinline.py Tests: Verify function ref (#3385) 2024-11-25 20:38:41 -05:00
t_func_refio_bad.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_func_refio_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_func_refio_bad.v
t_func_regfirst.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_func_regfirst.v
t_func_return.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_func_return.v
t_func_return_bad.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_func_return_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_func_return_bad.v
t_func_sel.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_func_sel.v
t_func_sum.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_func_sum.v
t_func_task_bad.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_func_task_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_func_task_bad.v
t_func_tie_bad.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_func_tie_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_func_tie_bad.v
t_func_twocall.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_func_twocall.v
t_func_twocall_noexpand.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_func_types.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_func_types.v
t_func_under.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_func_under.v
t_func_under2.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_func_under2.v
t_func_uninit.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_func_uninit.v
t_func_unit.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_func_unit.v
t_func_v.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_func_v.v
t_func_v_noinl.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_func_void.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_func_void.v
t_func_void_bad.out Fix error message when call task as a function (#3089). 2025-01-04 12:55:15 -05:00
t_func_void_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_func_void_bad.v Fix error message when call task as a function (#3089). 2025-01-04 12:55:15 -05:00
t_func_while.py Change `--trace` to `--trace-vcd`. 2025-04-05 10:46:39 -04:00
t_func_while.v
t_func_wide.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_func_wide.v
t_func_wide_out.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_func_wide_out.v
t_func_wide_out_bad.out
t_func_wide_out_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_func_wide_out_c.cpp
t_func_wide_out_noinl.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_fuzz_always_bad.out Fix method calls without parenthesis (#6127). 2025-06-26 18:16:21 -04:00
t_fuzz_always_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_fuzz_always_bad.v
t_fuzz_eof_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_fuzz_eof_bad.v
t_fuzz_eqne_bad.out Add aggregate type error checks (#5570) (#5950) 2025-05-20 09:10:22 -04:00
t_fuzz_eqne_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_fuzz_eqne_bad.v
t_fuzz_genintf_bad.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_fuzz_genintf_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_fuzz_genintf_bad.v
t_fuzz_negwidth_bad.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_fuzz_negwidth_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_fuzz_negwidth_bad.v
t_fuzz_triand_bad.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_fuzz_triand_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_fuzz_triand_bad.v
t_gantt.py Tests: Cleanup some gantt tests; no test functional change 2025-04-01 22:54:39 -04:00
t_gantt_hier.py Tests: Cleanup some gantt tests; no test functional change 2025-04-01 22:54:39 -04:00
t_gantt_io.dat Support profiling nested hierarchical mtasks with verilator_gantt (#5956) 2025-04-24 07:50:07 -04:00
t_gantt_io.out Support profiling nested hierarchical mtasks with verilator_gantt (#5956) 2025-04-24 07:50:07 -04:00
t_gantt_io.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_gantt_io.vcd.out Support profiling nested hierarchical mtasks with verilator_gantt (#5956) 2025-04-24 07:50:07 -04:00
t_gantt_io_arm.dat Support profiling nested hierarchical mtasks with verilator_gantt (#5956) 2025-04-24 07:50:07 -04:00
t_gantt_io_arm.out Add visualization of multi-threaded waiting time with verilator_gantt (#5929) 2025-04-10 10:03:58 -04:00
t_gantt_io_arm.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_gantt_io_noproc.dat Support profiling nested hierarchical mtasks with verilator_gantt (#5956) 2025-04-24 07:50:07 -04:00
t_gantt_io_noproc.out Add visualization of multi-threaded waiting time with verilator_gantt (#5929) 2025-04-10 10:03:58 -04:00
t_gantt_io_noproc.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_gantt_numa.py Tests: Disable warning in t_gantt_numa. 2025-04-06 23:16:51 -04:00
t_gantt_two.cpp Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_gantt_two.py Tests: Cleanup some gantt tests; no test functional change 2025-04-01 22:54:39 -04:00
t_gate_array.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_gate_array.v
t_gate_basic.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_gate_basic.v Support `$setuphold` (#5884) 2025-04-02 06:08:51 -04:00
t_gate_basic_timing.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_gate_chained.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_gate_delay_unsup.out
t_gate_delay_unsup.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_gate_delref.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_gate_delref.v
t_gate_elim.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_gate_elim.v
t_gate_elim_cycle.py Fix V3Gate assertion on eliminated circular logic (#5889) (#5898) 2025-03-28 17:04:09 +00:00
t_gate_elim_cycle.v Fix V3Gate assertion on eliminated circular logic (#5889) (#5898) 2025-03-28 17:04:09 +00:00
t_gate_fdup.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_gate_fdup.v
t_gate_implicit.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_gate_implicit.v
t_gate_inline_wide_exclude_multiple.py Improve optimization of duplicate wide expressions (#5637) 2024-12-11 11:45:31 +00:00
t_gate_inline_wide_exclude_multiple.v Improve optimization of duplicate wide expressions (#5637) 2024-12-11 11:45:31 +00:00
t_gate_inline_wide_noexclude_arraysel.py Improve optimization of duplicate wide expressions (#5637) 2024-12-11 11:45:31 +00:00
t_gate_inline_wide_noexclude_arraysel.v Improve optimization of duplicate wide expressions (#5637) 2024-12-11 11:45:31 +00:00
t_gate_inline_wide_noexclude_const.py Improve optimization of duplicate wide expressions (#5637) 2024-12-11 11:45:31 +00:00
t_gate_inline_wide_noexclude_const.v Improve optimization of duplicate wide expressions (#5637) 2024-12-11 11:45:31 +00:00
t_gate_inline_wide_noexclude_other_scope.py Improve optimization of duplicate wide expressions (#5637) 2024-12-11 11:45:31 +00:00
t_gate_inline_wide_noexclude_other_scope.v Improve optimization of duplicate wide expressions (#5637) 2024-12-11 11:45:31 +00:00
t_gate_inline_wide_noexclude_sel.py Automatically split some packed variables (#5843) 2025-03-09 10:31:01 -04:00
t_gate_inline_wide_noexclude_sel.v Improve optimization of duplicate wide expressions (#5637) 2024-12-11 11:45:31 +00:00
t_gate_inline_wide_noexclude_small_wide.py Improve optimization of duplicate wide expressions (#5637) 2024-12-11 11:45:31 +00:00
t_gate_inline_wide_noexclude_small_wide.v Improve optimization of duplicate wide expressions (#5637) 2024-12-11 11:45:31 +00:00
t_gate_inline_wide_noexclude_varref.py Improve optimization of duplicate wide expressions (#5637) 2024-12-11 11:45:31 +00:00
t_gate_inline_wide_noexclude_varref.v Improve optimization of duplicate wide expressions (#5637) 2024-12-11 11:45:31 +00:00
t_gate_loop.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_gate_loop.v
t_gate_lvalue_const.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_gate_lvalue_const.v
t_gate_opt.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_gate_opt.v Fix assertion failure in V3Gate (#5101) 2024-06-08 08:37:01 -04:00
t_gate_ormux.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_gate_ormux.v
t_gate_primitives_implicit_net.out
t_gate_primitives_implicit_net.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_gate_primitives_implicit_net.v
t_gate_strength.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_gate_strength.v
t_gate_tree.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_gate_unsup.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_gate_unsup.v
t_gated_clk_1.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_gated_clk_1.v
t_gen_alw.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_gen_alw.v Fix verilator_gantt for hierarchically Verilated models (#5700) 2024-12-23 09:10:46 -06:00
t_gen_assign.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_gen_assign.v
t_gen_class.py Support generated classes (#5665). 2025-01-05 17:10:04 -05:00
t_gen_class.v Support generated classes (#5665). 2025-01-05 17:10:04 -05:00
t_gen_cond_bitrange.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_gen_cond_bitrange.v
t_gen_cond_bitrange_bad.out
t_gen_cond_bitrange_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_gen_cond_bitrange_bad.v
t_gen_cond_const.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_gen_cond_const.v
t_gen_defparam.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_gen_defparam.v
t_gen_defparam_bad.out Fix fault on defparam with UNSUPPORTED ignored (#5450). 2024-09-13 18:31:55 -04:00
t_gen_defparam_bad.py Fix fault on defparam with UNSUPPORTED ignored (#5450). 2024-09-13 18:31:55 -04:00
t_gen_defparam_bad.v Fix fault on defparam with UNSUPPORTED ignored (#5450). 2024-09-13 18:31:55 -04:00
t_gen_defparam_multi.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_gen_defparam_multi.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_gen_defparam_multi.v
t_gen_defparam_nfound_bad.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_gen_defparam_nfound_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_gen_defparam_nfound_bad.v
t_gen_div0.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_gen_div0.v
t_gen_for.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_gen_for.v
t_gen_for0.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_gen_for0.v
t_gen_for1.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_gen_for1.v
t_gen_for_interface.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_gen_for_interface.v
t_gen_for_overlap.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_gen_for_overlap.v
t_gen_for_shuffle.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_gen_for_shuffle.v
t_gen_forif.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_gen_forif.v
t_gen_genblk.out
t_gen_genblk.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_gen_genblk.v
t_gen_genblk_noinl.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_gen_if.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_gen_if.v
t_gen_ifelse.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_gen_ifelse.v
t_gen_inc.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_gen_inc.v
t_gen_index.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_gen_index.v
t_gen_intdot.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_gen_intdot.v
t_gen_intdot2.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_gen_intdot2.v
t_gen_local.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_gen_local.v
t_gen_lsb.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_gen_lsb.v
t_gen_mislevel.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_gen_mislevel.v
t_gen_missing.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_gen_missing.v Add error on instances without parenthesis. 2024-09-22 12:25:35 -04:00
t_gen_missing_bad.out Add `MODMISSING` error, in place of unnamed error (#6054). 2025-05-29 21:02:00 -04:00
t_gen_missing_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_gen_missing_bad2.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_gen_missing_bad2.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_gen_missing_bad2.v
t_gen_nonconst_bad.out Add `MODMISSING` error, in place of unnamed error (#6054). 2025-05-29 21:02:00 -04:00
t_gen_nonconst_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_gen_nonconst_bad.v
t_gen_self_return.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_gen_self_return.v
t_gen_upscope.out
t_gen_upscope.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_gen_upscope.v
t_gen_var_bad.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_gen_var_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_gen_var_bad.v
t_generate_fatal_bad.out Fix duplicate error first-lines, and some internal V3Error cleanups 2025-05-10 13:29:30 -04:00
t_generate_fatal_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_generate_fatal_bad.v
t_genfor_hier.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_genfor_hier.v
t_genfor_init_o0.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_genfor_init_o0.v Fix error on empty generate with -O0 (#5250). 2024-07-11 06:59:15 -04:00
t_genfor_signed.out
t_genfor_signed.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_genfor_signed.v
t_genvar_for_bad.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_genvar_for_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_genvar_for_bad.v Add error on misused genvar (#408). 2024-10-03 18:54:30 -04:00
t_genvar_misuse_bad.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_genvar_misuse_bad.py Add error on misused genvar (#408). 2024-10-03 18:54:30 -04:00
t_genvar_misuse_bad.v
t_hier_block.cpp
t_hier_block.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_hier_block.v
t_hier_block0_bad.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_hier_block0_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_hier_block0_bad.v Support 'parameter type' in hierarchical blocks (#5309) (#5333) 2024-08-21 05:30:59 -04:00
t_hier_block1_bad.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_hier_block1_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_hier_block1_bad.v
t_hier_block_chained.py Add `--hierarchical-threads` (#6037) 2025-05-26 09:37:35 -04:00
t_hier_block_chained.v Add `--hierarchical-threads` (#6037) 2025-05-26 09:37:35 -04:00
t_hier_block_chained.vlt Add `--hierarchical-threads` (#6037) 2025-05-26 09:37:35 -04:00
t_hier_block_import.py Fix hierarchical verilation for projects with dot-f dependency lists (#5199) (#5669) 2024-12-12 11:25:19 -05:00
t_hier_block_import.v Fix hierarchical verilation for projects with dot-f dependency lists (#5199) (#5669) 2024-12-12 11:25:19 -05:00
t_hier_block_import_cmake.py Fix hierarchical verilation for projects with dot-f dependency lists (#5199) (#5669) 2024-12-12 11:25:19 -05:00
t_hier_block_int.py Support integer atom type ports in `--hierarchical` (#5748) 2025-01-24 07:47:11 -05:00
t_hier_block_int.v Support integer atom type ports in `--hierarchical` (#5748) 2025-01-24 07:47:11 -05:00
t_hier_block_libmod.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_hier_block_libmod.v
t_hier_block_nohier.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_hier_block_perf.py Add `--hierarchical-threads` (#6037) 2025-05-26 09:37:35 -04:00
t_hier_block_perf.v Support multi-thread hierarchical simulation (#2583) (#5871) 2025-03-24 18:39:29 -04:00
t_hier_block_perf.vlt Support multi-thread hierarchical simulation (#2583) (#5871) 2025-03-24 18:39:29 -04:00
t_hier_block_prot_lib.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_hier_block_prot_lib_shared.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_hier_block_sc.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_hier_block_sc_trace_fst.out Optimize duplicate timestamps out of traces (#4686) 2025-04-05 14:19:58 -04:00
t_hier_block_sc_trace_fst.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_hier_block_sc_trace_vcd.out Optimize duplicate timestamps out of traces (#4686) 2025-04-05 14:19:58 -04:00
t_hier_block_sc_trace_vcd.py Change `--trace` to `--trace-vcd`. 2025-04-05 10:46:39 -04:00
t_hier_block_signed_logic.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_hier_block_signed_logic.v Fix signed types emitted in hierarchical Verilation (#5178) 2024-06-14 08:07:32 -04:00
t_hier_block_struct.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_hier_block_struct.v
t_hier_block_struct_nohier.py Fix VL_UNLIKELY with constructors 2025-01-11 15:27:11 -05:00
t_hier_block_threads_bad.out Fix nested hier blocks workers error (#6087) 2025-06-12 07:15:46 -04:00
t_hier_block_threads_bad.py Support multi-thread hierarchical simulation (#2583) (#5871) 2025-03-24 18:39:29 -04:00
t_hier_block_threads_bad.v Support multi-thread hierarchical simulation (#2583) (#5871) 2025-03-24 18:39:29 -04:00
t_hier_block_threads_bad.vlt Support multi-thread hierarchical simulation (#2583) (#5871) 2025-03-24 18:39:29 -04:00
t_hier_block_trace_fst.out Support 'parameter type' in hierarchical blocks (#5309) (#5333) 2024-08-21 05:30:59 -04:00
t_hier_block_trace_fst.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_hier_block_trace_saif.out In SAIF dumps include signals with TC 0 (#5914) 2025-04-03 16:25:10 -04:00
t_hier_block_trace_saif.py Add `--trace-saif` for SAIF power traces (#5812) 2025-03-07 10:41:29 -05:00
t_hier_block_trace_vcd.out Optimize duplicate timestamps out of traces (#4686) 2025-04-05 14:19:58 -04:00
t_hier_block_trace_vcd.py Change `--trace` to `--trace-vcd`. 2025-04-05 10:46:39 -04:00
t_hier_block_type_param.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_hier_block_type_param.v Support 'parameter type' in hierarchical blocks (#5309) (#5333) 2024-08-21 05:30:59 -04:00
t_hier_block_type_param_multiple.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_hier_block_type_param_multiple.v Support 'parameter type' in hierarchical blocks (#5309) (#5333) 2024-08-21 05:30:59 -04:00
t_hier_block_type_param_multiple_instances.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_hier_block_type_param_multiple_instances.v Support 'parameter type' in hierarchical blocks (#5309) (#5333) 2024-08-21 05:30:59 -04:00
t_hier_block_type_param_nested.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_hier_block_type_param_nested.v Support 'parameter type' in hierarchical blocks (#5309) (#5333) 2024-08-21 05:30:59 -04:00
t_hier_block_type_param_notfound_bad.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_hier_block_type_param_notfound_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_hier_block_type_param_typedef.v Support 'parameter type' in hierarchical blocks (#5309) (#5333) 2024-08-21 05:30:59 -04:00
t_hier_block_typedef_param.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_hier_block_vlt.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_hier_block_vlt.vlt
t_hier_bynum.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_hier_bynum.v
t_hier_task.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_hier_task.v Add error on instances without parenthesis. 2024-09-22 12:25:35 -04:00
t_hier_trace.out
t_hier_trace.py Change `--trace` to `--trace-vcd`. 2025-04-05 10:46:39 -04:00
t_hier_trace.v Fix hierarchical compilation with nested -F (#5114) (#5124) 2024-06-12 07:42:52 -04:00
t_hier_trace_noinl.out Fix trace hierarchicalName runtime errors (#5668) (#6076). 2025-06-10 20:17:32 -04:00
t_hier_trace_noinl.py Change `--trace` to `--trace-vcd`. 2025-04-05 10:46:39 -04:00
t_hierarchy_identifier.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_hierarchy_identifier.v
t_hierarchy_identifier_bad.out
t_hierarchy_identifier_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_hierarchy_identifier_bad.v
t_hierarchy_unnamed.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_hierarchy_unnamed.v
t_if_deep.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_if_deep.v
t_if_same_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_if_same_bad.v
t_if_swap.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_if_swap.v
t_iff.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_iff.v
t_implements.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_implements.v
t_implements_collision.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_implements_collision.v
t_implements_collision_bad.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_implements_collision_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_implements_collision_bad.v
t_implements_contents_bad.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_implements_contents_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_implements_contents_bad.v
t_implements_missing_bad.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_implements_missing_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_implements_missing_bad.v
t_implements_nested.py Support nested classes (#4178) (#5778) 2025-02-17 23:47:41 +11:00
t_implements_nested.v Support nested classes (#4178) (#5778) 2025-02-17 23:47:41 +11:00
t_implements_nested_bad.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_implements_nested_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_implements_nested_bad.v Support nested classes (#4178) (#5778) 2025-02-17 23:47:41 +11:00
t_implements_new_bad.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_implements_new_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_implements_new_bad.v
t_implements_noinherit_bad.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_implements_noinherit_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_implements_noinherit_bad.v
t_implements_noninterface_bad.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_implements_noninterface_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_implements_noninterface_bad.v Add error on instances without parenthesis. 2024-09-22 12:25:35 -04:00
t_implements_notfound_bad.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_implements_notfound_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_implements_notfound_bad.v
t_implements_typed.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_implements_typed.v
t_impure_cond_empty_if.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_impure_cond_empty_if.v Fix purity of functions with AstJumpBlock or AstStmtExpr (#5332) 2024-08-06 16:07:38 +01:00
t_inc_relink.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_inc_relink.v Add error on instances without parenthesis. 2024-09-22 12:25:35 -04:00
t_incorrect_multi_driven.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_incorrect_multi_driven.v
t_incr_void.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_incr_void.v
t_increment_bad.out
t_increment_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_increment_bad.v
t_infinite_recursion.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_infinite_recursion.v Fix infinite recursion due to recursive functions/tasks (#5398) 2024-08-26 12:18:52 -04:00
t_init_concat.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_init_concat.v
t_initarray_nonarray.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_initarray_nonarray.v Tests: Remove unused clk input 2024-10-07 21:44:07 -04:00
t_initial.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_initial.v
t_initial_assign_sformatf.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_initial_assign_sformatf.v Fix sformatf internal error on initial automatics (#5423) 2024-08-30 19:35:47 -04:00
t_initial_assign_sformatf_debug.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_initial_dlyass.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_initial_dlyass.v
t_initial_dlyass_bad.out
t_initial_dlyass_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_initial_edge.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_initial_edge.v
t_initial_edge_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_initial_inc.vh
t_initialstatic_circ.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_initialstatic_circ.v
t_inside.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_inside.v
t_inside2.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_inside2.v
t_inside_assoc_unsup.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_inside_assoc_unsup.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_inside_assoc_unsup.v
t_inside_dyn.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_inside_dyn.v Fix missing type coercion in 'inside {array}' (#5340) 2024-08-08 03:46:41 -04:00
t_inside_extend.py Fix width extension of operands of `inside` operator (#5685) 2024-12-19 15:51:51 +01:00
t_inside_extend.v Fix width extension of operands of `inside` operator (#5685) 2024-12-19 15:51:51 +01:00
t_inside_nonint.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_inside_nonint.v
t_inside_queue_elem.py Fix wildcard equality and inside operators for non-fourstate expressions (#5673) 2024-12-12 14:51:48 +01:00
t_inside_queue_elem.v Fix wildcard equality and inside operators for non-fourstate expressions (#5673) 2024-12-12 14:51:48 +01:00
t_inside_unpacked.out
t_inside_unpacked.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_inside_unpacked.v
t_inside_unpacked_param.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_inside_unpacked_param.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_inside_unpacked_param.v
t_inside_wild.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_inside_wild.v
t_inst_2star_bad.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_inst_2star_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_inst_2star_bad.v
t_inst_array.v
t_inst_array_bad.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_inst_array_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_inst_array_bad.v Tests: Remove unused clk input 2024-10-07 21:44:07 -04:00
t_inst_array_connect.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_inst_array_connect.v
t_inst_array_inl0.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_inst_array_inl1.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_inst_array_partial.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_inst_array_partial.v
t_inst_array_struct.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_inst_array_struct.v
t_inst_ccall.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_inst_ccall.v
t_inst_comma.v
t_inst_comma_inl0.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_inst_comma_inl1.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_inst_darray.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_inst_darray.v
t_inst_dearray_slice.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_inst_dearray_slice.v
t_inst_dff.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_inst_dff.v
t_inst_dtree.v
t_inst_dtree_inla.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_inst_dtree_inlab.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_inst_dtree_inlac.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_inst_dtree_inlad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_inst_dtree_inlb.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_inst_dtree_inlbc.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_inst_dtree_inlbd.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_inst_dtree_inlc.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_inst_dtree_inlcd.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_inst_dtree_inld.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_inst_first.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_inst_first.v
t_inst_first_a.v
t_inst_first_b.v
t_inst_implicit.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_inst_implicit.v
t_inst_long.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_inst_long_bad.out Add `MODMISSING` error, in place of unnamed error (#6054). 2025-05-29 21:02:00 -04:00
t_inst_long_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_inst_long_bad.v Fix shortened module names when searching for files (#5196) (#5246) 2024-08-09 17:23:00 -04:00
t_inst_misarray2_bad.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_inst_misarray2_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_inst_misarray2_bad.v
t_inst_misarray_bad.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_inst_misarray_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_inst_misarray_bad.v
t_inst_mism.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_inst_mism.v
t_inst_missing.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_inst_missing.v
t_inst_missing_bad.out Change cell messages to instance to match IEEE 2025-05-03 04:00:47 -04:00
t_inst_missing_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_inst_missing_bad.v
t_inst_missing_dot_bad.out Fix method calls without parenthesis (#6127). 2025-06-26 18:16:21 -04:00
t_inst_missing_dot_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_inst_missing_dot_bad.v
t_inst_mnpipe.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_inst_mnpipe.v
t_inst_name_long.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_inst_name_long.v
t_inst_noname_bad.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_inst_noname_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_inst_noname_bad.v
t_inst_notunsized.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_inst_notunsized.v
t_inst_overwide.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_inst_overwide.v
t_inst_overwide_bad.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_inst_overwide_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_inst_param_comma_bad.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_inst_param_comma_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_inst_param_comma_bad.v
t_inst_param_override_bad.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_inst_param_override_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_inst_param_override_bad.v
t_inst_paren_bad.out Disable symbol from parser: Support redeclaring type as non-type; major parsing change (#2412). 2025-05-18 07:13:37 -04:00
t_inst_paren_bad.py Add error on instances without parenthesis. 2024-09-22 12:25:35 -04:00
t_inst_paren_bad.v Add error on instances without parenthesis. 2024-09-22 12:25:35 -04:00
t_inst_pin_place_bad.out Change cell messages to instance to match IEEE 2025-05-03 04:00:47 -04:00
t_inst_pin_place_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_inst_pin_place_bad.v
t_inst_pin_realnreal.out
t_inst_pin_realnreal.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_inst_pin_realnreal.v
t_inst_port_array.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_inst_port_array.v
t_inst_prepost.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_inst_prepost.v
t_inst_public.py Fix public_module requiring a wire to become public (#4916). 2024-11-25 21:21:11 -05:00
t_inst_public.v Fix public_module requiring a wire to become public (#4916). 2024-11-25 21:21:11 -05:00
t_inst_recurse2_bad.out Tests: Remove unused clk input 2024-10-07 21:44:07 -04:00
t_inst_recurse2_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_inst_recurse2_bad.v Tests: Remove unused clk input 2024-10-07 21:44:07 -04:00
t_inst_recurse_bad.out Tests: Remove unused clk input 2024-10-07 21:44:07 -04:00
t_inst_recurse_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_inst_recurse_bad.v Tests: Remove unused clk input 2024-10-07 21:44:07 -04:00
t_inst_signed.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_inst_signed.v
t_inst_signed1.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_inst_signed1.v
t_inst_slice.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_inst_slice.v
t_inst_slice_noinl.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_inst_slice_part_select.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_inst_slice_part_select.v
t_inst_sv.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_inst_sv.v
t_inst_tree.v
t_inst_tree_inl0_pub0.out
t_inst_tree_inl0_pub0.py Tests: Remove file-number hardcoded dependencies. 2024-11-12 21:39:13 -05:00
t_inst_tree_inl0_pub0.vlt
t_inst_tree_inl0_pub1.py Tests: Move per-command expect= to instead check logfiles 2024-09-19 18:53:22 -04:00
t_inst_tree_inl0_pub1.vlt
t_inst_tree_inl1_pub0.out
t_inst_tree_inl1_pub0.py Tests: Remove file-number hardcoded dependencies. 2024-11-12 21:39:13 -05:00
t_inst_tree_inl1_pub0.vlt
t_inst_tree_inl1_pub1.out
t_inst_tree_inl1_pub1.py Tests: Remove file-number hardcoded dependencies. 2024-11-12 21:39:13 -05:00
t_inst_tree_inl1_pub1.vlt
t_inst_v2k.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_inst_v2k.v
t_inst_v2k__sub.vi
t_inst_wideconst.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_inst_wideconst.v
t_interconnect.out
t_interconnect.py Tests: Cleanup as --binary implies --timing. No test functional change. 2025-03-29 15:50:07 -04:00
t_interconnect.v
t_interconnect_bad.out
t_interconnect_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_interconnect_bad.v
t_interface.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_interface.v
t_interface1.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_interface1.v
t_interface1_modport.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_interface1_modport.v
t_interface1_modport_nansi.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_interface1_modport_noinl.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_interface1_modport_trace.py Change `--trace` to `--trace-vcd`. 2025-04-05 10:46:39 -04:00
t_interface1_noinl.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_interface2.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_interface2.v
t_interface2_noinl.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_interface_and_struct_pattern.py Fix interface and struct pattern collision (#5640) (#5639) 2024-11-27 17:20:21 -05:00
t_interface_and_struct_pattern.v Fix interface and struct pattern collision (#5640) (#5639) 2024-11-27 17:20:21 -05:00
t_interface_ar2a.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_interface_ar2a.v
t_interface_ar2b.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_interface_ar2b.v
t_interface_ar3.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_interface_ar3.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_interface_ar3.v
t_interface_array.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_interface_array.v
t_interface_array2.py Tests: Fix t_interface_array2 tests (#6065) 2025-06-06 06:28:29 -04:00
t_interface_array2.v Tests: Fix t_interface_array2 tests (#6065) 2025-06-06 06:28:29 -04:00
t_interface_array2_coverage.py Tests: Fix t_interface_array2 tests (#6065) 2025-06-06 06:28:29 -04:00
t_interface_array2_noinl.py Tests: Fix t_interface_array2 tests (#6065) 2025-06-06 06:28:29 -04:00
t_interface_array3.py Fix virtual interface array typedef expressions (#6057). 2025-06-04 21:43:46 -04:00
t_interface_array3.v Fix virtual interface array typedef expressions (#6057). 2025-06-04 21:43:46 -04:00
t_interface_array4.py Fix interface array connections with non-zero low declaration index. 2025-06-28 09:43:02 -04:00
t_interface_array4.v Fix interface array connections with non-zero low declaration index. 2025-06-28 09:43:02 -04:00
t_interface_array_bad.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_interface_array_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_interface_array_bad.v
t_interface_array_modport.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_interface_array_modport.v
t_interface_array_nocolon.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_interface_array_nocolon.v
t_interface_array_nocolon_bad.out
t_interface_array_nocolon_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_interface_array_nocolon_bad.v
t_interface_array_noinl.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_interface_array_parameter_access.py Fix interface bracketed array parameter access (#5678) (#5677) 2024-12-13 12:00:49 -05:00
t_interface_array_parameter_access.v Fix interface bracketed array parameter access (#5678) (#5677) 2024-12-13 12:00:49 -05:00
t_interface_arraymux.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_interface_arraymux.v
t_interface_asvar_bad.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_interface_asvar_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_interface_asvar_bad.v
t_interface_bind_public.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_interface_bind_public.v
t_interface_colon_bad.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_interface_colon_bad.py Tests: Add t_interface_colon_bad (#5281) 2024-11-25 21:50:24 -05:00
t_interface_colon_bad.v Tests: Add t_interface_colon_bad (#5281) 2024-11-25 21:50:24 -05:00
t_interface_dearray.py Fix interface array assignments (#5270) (#5633) (#5869) 2025-03-21 17:00:49 -04:00
t_interface_dearray.v Fix method calls and new to access interface arrays (#5973) 2025-05-29 22:11:47 -04:00
t_interface_dearray_bad.out Fix method calls and new to access interface arrays (#5973) 2025-05-29 22:11:47 -04:00
t_interface_dearray_bad.py Fix interface array assignments (#5270) (#5633) (#5869) 2025-03-21 17:00:49 -04:00
t_interface_dearray_bad.v Fix method calls and new to access interface arrays (#5973) 2025-05-29 22:11:47 -04:00
t_interface_derived_type.py Fix user-type parameter overlap (#5469) 2024-09-20 14:29:31 -04:00
t_interface_derived_type.v Fix user-type parameter overlap (#5469) 2024-09-20 14:29:31 -04:00
t_interface_down.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_interface_down.v
t_interface_down_inla.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_interface_down_inlab.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_interface_down_inlac.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_interface_down_inlad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_interface_down_inlb.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_interface_down_inlbc.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_interface_down_inlbd.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_interface_down_inlc.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_interface_down_inlcd.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_interface_down_inld.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_interface_down_noinl.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_interface_dups.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_interface_dups.v
t_interface_find.py Tests: Add t_interface_find 2024-12-02 07:20:40 -05:00
t_interface_find.v Tests: Add t_interface_find 2024-12-02 07:20:40 -05:00
t_interface_find_ifc.v Tests: Add t_interface_find 2024-12-02 07:20:40 -05:00
t_interface_gen.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_interface_gen.v Tests: Fix some non-IEEE issues in tests. 2024-09-27 09:00:20 -04:00
t_interface_gen2.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_interface_gen2.v
t_interface_gen2_collision.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_interface_gen2_noinl.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_interface_gen3.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_interface_gen3.v
t_interface_gen3_collision.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_interface_gen3_noinl.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_interface_gen4.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_interface_gen4.v
t_interface_gen4_noinl.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_interface_gen5.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_interface_gen5.v
t_interface_gen5_noinl.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_interface_gen6.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_interface_gen6.v
t_interface_gen6_noinl.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_interface_gen7.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_interface_gen7.v
t_interface_gen7_noinl.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_interface_gen8.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_interface_gen8.v
t_interface_gen8_noinl.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_interface_gen9.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_interface_gen9.v
t_interface_gen9_noinl.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_interface_gen10.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_interface_gen10.v
t_interface_gen10_noinl.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_interface_gen11.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_interface_gen11.v
t_interface_gen11_noinl.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_interface_gen12.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_interface_gen12.v
t_interface_gen12_noinl.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_interface_gen13.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_interface_gen13.v
t_interface_gen_noinl.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_interface_hidden.py Tests: Add t_interface_hidden 2024-12-03 12:00:56 -05:00
t_interface_hidden.v Tests: Add t_interface_hidden 2024-12-03 12:00:56 -05:00
t_interface_import_param.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_interface_import_param.v
t_interface_inl.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_interface_localparam.out
t_interface_localparam.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_interface_localparam.v
t_interface_mismodport_bad.out Internals: Redo post-error additional information to be part of error calls. 2025-05-10 16:20:12 -04:00
t_interface_mismodport_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_interface_mismodport_bad.v Tests: Remove unused clk input 2024-10-07 21:44:07 -04:00
t_interface_missing_bad.out Disable symbol from parser: Support redeclaring type as non-type; major parsing change (#2412). 2025-05-18 07:13:37 -04:00
t_interface_missing_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_interface_missing_bad.v
t_interface_modport.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_interface_modport.v
t_interface_modport_bad.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_interface_modport_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_interface_modport_bad.v
t_interface_modport_coverage.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_interface_modport_dir_bad.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_interface_modport_dir_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_interface_modport_dir_bad.v
t_interface_modport_export.out
t_interface_modport_export.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_interface_modport_export.v
t_interface_modport_import.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_interface_modport_import.v
t_interface_modport_import_export_list.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_interface_modport_import_export_list.v
t_interface_modport_import_noinl.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_interface_modport_inl.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_interface_modport_noinl.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_interface_modportlist.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_interface_modportlist.v
t_interface_mp_func.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_interface_mp_func.v
t_interface_mp_func_noinl.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_interface_nansi.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_interface_nansi.v
t_interface_nest.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_interface_nest.v
t_interface_nest_noinl.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_interface_noinl.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_interface_notpublic.py Fix mis-public interfaces, broke in f58aee2ff2 2024-11-26 19:16:05 -05:00
t_interface_notpublic.v Fix mis-public interfaces, broke in f58aee2ff2 2024-11-26 19:16:05 -05:00
t_interface_param1.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_interface_param1.v
t_interface_param2.out
t_interface_param2.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_interface_param2.v
t_interface_param_acc_bits.out
t_interface_param_acc_bits.py Fix parameters referencing interface fields (#1593) (#5910) 2025-04-02 09:43:12 -04:00
t_interface_param_acc_bits.v Fix parameters referencing interface fields (#1593) (#5910) 2025-04-02 09:43:12 -04:00
t_interface_param_another_bad.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_interface_param_another_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_interface_param_another_bad.v Fix parameters referencing interface fields (#1593) (#5910) 2025-04-02 09:43:12 -04:00
t_interface_param_genblk.out
t_interface_param_genblk.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_interface_param_genblk.v Internals: Defer DTypeRef versus IfaceDTypeRef determination into V3LinkDot, in preparation for future parser 2025-04-27 22:11:28 -04:00
t_interface_param_loop_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_interface_param_loop_bad.v
t_interface_parameter_access.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_interface_parameter_access.v
t_interface_paren_missing_bad.out Disable symbol from parser: Support redeclaring type as non-type; major parsing change (#2412). 2025-05-18 07:13:37 -04:00
t_interface_paren_missing_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_interface_paren_missing_bad.v Fix non-interface error message 2024-11-09 20:28:47 -05:00
t_interface_parent_scope_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_interface_parent_scope_bad.v Tests: Remove unused clk input 2024-10-07 21:44:07 -04:00
t_interface_ref_trace.out
t_interface_ref_trace.py Change `--trace` to `--trace-vcd`. 2025-04-05 10:46:39 -04:00
t_interface_ref_trace.v
t_interface_ref_trace_fst.out
t_interface_ref_trace_fst.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_interface_ref_trace_fst_sc.out Optimize duplicate timestamps out of traces (#4686) 2025-04-05 14:19:58 -04:00
t_interface_ref_trace_fst_sc.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_interface_ref_trace_inla.py Change `--trace` to `--trace-vcd`. 2025-04-05 10:46:39 -04:00
t_interface_ref_trace_inlab.py Change `--trace` to `--trace-vcd`. 2025-04-05 10:46:39 -04:00
t_interface_ref_trace_inlb.py Change `--trace` to `--trace-vcd`. 2025-04-05 10:46:39 -04:00
t_interface_ref_trace_noinl.out Fix trace hierarchicalName runtime errors (#5668) (#6076). 2025-06-10 20:17:32 -04:00
t_interface_ref_trace_noinl.py Change `--trace` to `--trace-vcd`. 2025-04-05 10:46:39 -04:00
t_interface_ref_trace_noinl_notrace.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_interface_ref_trace_saif.out In SAIF dumps include signals with TC 0 (#5914) 2025-04-03 16:25:10 -04:00
t_interface_ref_trace_saif.py Add `--trace-saif` for SAIF power traces (#5812) 2025-03-07 10:41:29 -05:00
t_interface_size_bad.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_interface_size_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_interface_size_bad.v
t_interface_star.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_interface_star.v
t_interface_top_bad.out Disable symbol from parser: Support redeclaring type as non-type; major parsing change (#2412). 2025-05-18 07:13:37 -04:00
t_interface_top_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_interface_top_bad.v
t_interface_twod.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_interface_twod.v
t_interface_twod_noinl.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_interface_typedef.out Disable symbol from parser: Support redeclaring type as non-type; major parsing change (#2412). 2025-05-18 07:13:37 -04:00
t_interface_typedef.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_interface_typedef.v
t_interface_typo_bad.out Disable symbol from parser: Support redeclaring type as non-type; major parsing change (#2412). 2025-05-18 07:13:37 -04:00
t_interface_typo_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_interface_typo_bad.v Add error on instances without parenthesis. 2024-09-22 12:25:35 -04:00
t_interface_virtual.out
t_interface_virtual.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_interface_virtual.v Fix virtual interface null checks (#5391) 2024-08-21 05:40:52 -04:00
t_interface_virtual_bad.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_interface_virtual_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_interface_virtual_bad.v
t_interface_virtual_controlflow.out
t_interface_virtual_controlflow.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_interface_virtual_controlflow.v
t_interface_virtual_inl.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_interface_virtual_opt.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_interface_virtual_opt.v
t_interface_virtual_param.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_interface_virtual_param.v
t_interface_virtual_sched_act.out
t_interface_virtual_sched_act.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_interface_virtual_sched_act.v
t_interface_virtual_sched_ico.cpp
t_interface_virtual_sched_ico.out
t_interface_virtual_sched_ico.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_interface_virtual_sched_ico.v
t_interface_virtual_sched_nba.out
t_interface_virtual_sched_nba.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_interface_virtual_sched_nba.v
t_interface_virtual_timing.out
t_interface_virtual_timing.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_interface_virtual_timing.v
t_interface_virtual_unsup.out
t_interface_virtual_unsup.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_interface_virtual_unsup.v
t_interface_virtual_unused_bad.out
t_interface_virtual_unused_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_interface_virtual_unused_bad.v
t_interface_wire_bad.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_interface_wire_bad.py Tests: Rename interface-to-wire (#5649 test partial) 2024-11-30 19:05:26 -05:00
t_interface_wire_bad.v Tests: Rename interface-to-wire (#5649 test partial) 2024-11-30 19:05:26 -05:00
t_interface_wire_bad_param.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_interface_wire_bad_param.py Tests: Rename interface-to-wire (#5649 test partial) 2024-11-30 19:05:26 -05:00
t_interface_wire_bad_param.v Tests: Rename interface-to-wire (#5649 test partial) 2024-11-30 19:05:26 -05:00
t_interface_wrong_bad.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_interface_wrong_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_interface_wrong_bad.v
t_json_only_begin_hier.out Support simple `checker` blocks (#4066). 2025-04-06 23:42:49 -04:00
t_json_only_begin_hier.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_json_only_begin_hier.v
t_json_only_debugcheck.out Support simple `checker` blocks (#4066). 2025-04-06 23:42:49 -04:00
t_json_only_debugcheck.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_json_only_first.out Support simple `checker` blocks (#4066). 2025-04-06 23:42:49 -04:00
t_json_only_first.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_json_only_first.v
t_json_only_flat.out Support simple `checker` blocks (#4066). 2025-04-06 23:42:49 -04:00
t_json_only_flat.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_json_only_flat_no_inline_mod.out Support simple `checker` blocks (#4066). 2025-04-06 23:42:49 -04:00
t_json_only_flat_no_inline_mod.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_json_only_flat_no_inline_mod.v
t_json_only_flat_pub_mod.out Support simple `checker` blocks (#4066). 2025-04-06 23:42:49 -04:00
t_json_only_flat_pub_mod.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_json_only_flat_pub_mod.v
t_json_only_flat_vlvbound.out Internals: Replace unnecessary AstSel::widthp() child node with const in node (#6117) 2025-06-24 11:59:09 -04:00
t_json_only_flat_vlvbound.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_json_only_flat_vlvbound.v
t_json_only_output.out Support simple `checker` blocks (#4066). 2025-04-06 23:42:49 -04:00
t_json_only_output.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_json_only_output.v
t_json_only_tag.out Support simple `checker` blocks (#4066). 2025-04-06 23:42:49 -04:00
t_json_only_tag.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_json_only_tag.v
t_jumps_do_while.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_jumps_do_while.v
t_jumps_uninit_destructor_call.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_jumps_uninit_destructor_call.v
t_langext_1.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_langext_1.v
t_langext_1_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_langext_1d.py Fix matching language extension options including dots. 2025-01-05 22:52:29 -05:00
t_langext_1d_bad.py Fix matching language extension options including dots. 2025-01-05 22:52:29 -05:00
t_langext_2.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_langext_2.v
t_langext_2_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_langext_3.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_langext_3.v
t_langext_3_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_langext_4.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_langext_4_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_langext_2012ext.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_langext_2017ext.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_langext_2023ext.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_langext_order.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_langext_order.v
t_langext_order_sub.v
t_leak.cpp Add assertion on reusing VerilatedContext (#5167). 2024-06-11 19:38:58 -04:00
t_leak.py Tests: Fix ubuntu24.04-arm issues 2025-03-22 16:55:53 -04:00
t_leak.v
t_let.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_let.v
t_let_arg_bad.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_let_arg_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_let_arg_bad.v
t_let_recurse_bad.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_let_recurse_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_let_recurse_bad.v
t_let_stmt_bad.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_let_stmt_bad.py Add check for `let` misused in statement context (#5733). 2025-02-26 09:08:41 -05:00
t_let_stmt_bad.v Add check for `let` misused in statement context (#5733). 2025-02-26 09:08:41 -05:00
t_let_unsup.out
t_let_unsup.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_let_unsup.v
t_lib.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_lib_nolib.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_lib_prot.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_lib_prot.v
t_lib_prot_clk_gated.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_lib_prot_comb.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_lib_prot_comb.v Fix `--lib-create` with double-underscore (#6099). 2025-06-18 08:56:32 -04:00
t_lib_prot_delay_bad.out
t_lib_prot_delay_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_lib_prot_delay_bad.v
t_lib_prot_exe_bad.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_lib_prot_exe_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_lib_prot_inout_bad.out
t_lib_prot_inout_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_lib_prot_inout_bad.v
t_lib_prot_secret.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_lib_prot_secret.v
t_lib_prot_shared.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_lint_always_comb_bad.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_lint_always_comb_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_lint_always_comb_bad.v
t_lint_always_comb_iface.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_lint_always_comb_iface.v
t_lint_always_comb_multidriven_bad.out
t_lint_always_comb_multidriven_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_lint_always_comb_multidriven_bad.v
t_lint_always_comb_multidriven_compile_public_flat_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_lint_badvltpragma_bad.out Improve documentation for BADVLTPRAGMA 2025-04-30 20:32:30 -04:00
t_lint_badvltpragma_bad.py Tests: Fix relocation of extract tests 2025-04-30 23:02:19 -04:00
t_lint_badvltpragma_bad.v Improve documentation for BADVLTPRAGMA 2025-04-30 20:32:30 -04:00
t_lint_blksync_bad.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_lint_blksync_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_lint_blksync_bad.v
t_lint_blksync_loop.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_lint_blksync_loop.v
t_lint_block_redecl_bad.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_lint_block_redecl_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_lint_block_redecl_bad.v Tests: Remove unused clk input 2024-10-07 21:44:07 -04:00
t_lint_bsspace_bad.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_lint_bsspace_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_lint_bsspace_bad.v
t_lint_caseincomplete_bad.out
t_lint_caseincomplete_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_lint_caseincomplete_bad.v
t_lint_cmpconst_bad.out
t_lint_cmpconst_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_lint_cmpconst_bad.v
t_lint_colonplus_bad.out
t_lint_colonplus_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_lint_colonplus_bad.v
t_lint_comb_bad.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_lint_comb_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_lint_comb_bad.v
t_lint_comb_use.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_lint_comb_use.v
t_lint_const_func_dpi_bad.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_lint_const_func_dpi_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_lint_const_func_dpi_bad.v
t_lint_const_func_gen_bad.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_lint_const_func_gen_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_lint_const_func_gen_bad.v
t_lint_contassreg_bad.out
t_lint_contassreg_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_lint_contassreg_bad.v
t_lint_declfilename.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_lint_declfilename.v
t_lint_declfilename_bad.out
t_lint_declfilename_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_lint_declfilename_bbox.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_lint_declfilename_bbox.v
t_lint_defparam.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_lint_defparam.v
t_lint_defparam_bad.out
t_lint_defparam_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_lint_didnotconverge_bad.out
t_lint_didnotconverge_bad.py Tests: Fix relocation of extract tests 2025-04-30 23:02:19 -04:00
t_lint_didnotconverge_bad.v
t_lint_didnotconverge_nodbg_bad.out
t_lint_didnotconverge_nodbg_bad.py Tests: Fix relocation of extract tests 2025-04-30 23:02:19 -04:00
t_lint_dtype_compare.py Add aggregate type error checks (#5570) (#5950) 2025-05-20 09:10:22 -04:00
t_lint_dtype_compare.v Add aggregate type error checks (#5570) (#5950) 2025-05-20 09:10:22 -04:00
t_lint_dtype_compare_bad.out Add aggregate type error checks (#5570) (#5950) 2025-05-20 09:10:22 -04:00
t_lint_dtype_compare_bad.py Add aggregate type error checks (#5570) (#5950) 2025-05-20 09:10:22 -04:00
t_lint_dtype_compare_bad.v Add aggregate type error checks (#5570) (#5950) 2025-05-20 09:10:22 -04:00
t_lint_edge_real_bad.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_lint_edge_real_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_lint_edge_real_bad.v
t_lint_eofline.out
t_lint_eofline.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_lint_eofline_bad.out
t_lint_eofline_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_lint_eofline_vlt.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_lint_eofline_vlt.vlt
t_lint_ftask_output_assign_bad.out
t_lint_ftask_output_assign_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_lint_ftask_output_assign_bad.v
t_lint_genunnamed_bad.out
t_lint_genunnamed_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_lint_genunnamed_bad.v
t_lint_historical.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_lint_historical.v
t_lint_iface_array_topmodule1.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_lint_iface_array_topmodule1.v
t_lint_iface_array_topmodule2.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_lint_iface_array_topmodule2.v
t_lint_iface_array_topmodule3.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_lint_iface_array_topmodule3.v
t_lint_iface_array_topmodule_bad.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_lint_iface_array_topmodule_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_lint_iface_array_topmodule_bad.v
t_lint_iface_topmodule1.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_lint_iface_topmodule1.v
t_lint_iface_topmodule2.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_lint_iface_topmodule2.v
t_lint_iface_topmodule3.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_lint_iface_topmodule3.v
t_lint_iface_topmodule_bad.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_lint_iface_topmodule_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_lint_iface_topmodule_bad.v
t_lint_ifdepth_bad.out
t_lint_ifdepth_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_lint_ifdepth_bad.v
t_lint_implicit.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_lint_implicit.v
t_lint_implicit_bad.out
t_lint_implicit_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_lint_implicit_def_bad.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_lint_implicit_def_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_lint_implicit_def_bad.v
t_lint_implicit_func_bad.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_lint_implicit_func_bad.py Fix to avoid IMPLICIT creation if data type of same name. 2024-09-28 17:58:26 -04:00
t_lint_implicit_func_bad.v Fix to avoid IMPLICIT creation if data type of same name. 2024-09-28 17:58:26 -04:00
t_lint_implicit_port.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_lint_implicit_port.v
t_lint_implicit_type_bad.out Disable symbol from parser: Support redeclaring type as non-type; major parsing change (#2412). 2025-05-18 07:13:37 -04:00
t_lint_implicit_type_bad.py Disable symbol from parser: Support redeclaring type as non-type; major parsing change (#2412). 2025-05-18 07:13:37 -04:00
t_lint_implicit_type_bad.v Tests: Cleanup some type tests 2025-05-17 21:09:05 -04:00
t_lint_import_name2_bad.out Remove symbol table from parser: Support redeclaring type as non-type; major parsing change (#2412). 2025-05-18 07:13:37 -04:00
t_lint_import_name2_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_lint_import_name2_bad.v
t_lint_import_name_bad.out Remove symbol table from parser: Support redeclaring type as non-type; major parsing change (#2412). 2025-05-18 07:13:37 -04:00
t_lint_import_name_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_lint_import_name_bad.v
t_lint_importstar_bad.out Remove symbol table from parser: Support redeclaring type as non-type; major parsing change (#2412). 2025-05-18 07:13:37 -04:00
t_lint_importstar_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_lint_importstar_bad.v Fix segfault when only enum value referenced in package (#5714). 2025-01-04 10:36:34 -05:00
t_lint_in_inc_bad.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_lint_in_inc_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_lint_in_inc_bad.v
t_lint_in_inc_bad_1.vh
t_lint_in_inc_bad_2.vh
t_lint_incabspath.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_lint_incabspath.v
t_lint_incabspath_bad.out
t_lint_incabspath_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_lint_infinite.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_lint_infinite.v
t_lint_infinite_bad.out
t_lint_infinite_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_lint_infinite_bad.v
t_lint_inherit.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_lint_inherit.v
t_lint_input_eq_good.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_lint_input_eq_good.v Support default value on module input (#5358) (#5373) 2024-08-15 10:04:07 -04:00
t_lint_latch_1.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_lint_latch_1.v
t_lint_latch_2.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_lint_latch_2.v
t_lint_latch_3.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_lint_latch_3.v
t_lint_latch_4.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_lint_latch_4.v
t_lint_latch_5.out
t_lint_latch_5.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_lint_latch_5.v
t_lint_latch_6.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_lint_latch_6.v
t_lint_latch_7.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_lint_latch_7.v
t_lint_latch_8.py Fix LATCH warning for automatic variables (#5918) 2025-04-05 06:21:34 -04:00
t_lint_latch_8.v Fix LATCH warning for automatic variables (#5918) 2025-04-05 06:21:34 -04:00
t_lint_latch_bad.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_lint_latch_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_lint_latch_bad.v
t_lint_latch_bad_2.out
t_lint_latch_bad_2.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_lint_latch_bad_2.v
t_lint_latch_bad_3.out
t_lint_latch_bad_3.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_lint_latch_bad_3.v
t_lint_literal_bad.out
t_lint_literal_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_lint_literal_bad.v
t_lint_misindent_bad.out
t_lint_misindent_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_lint_misindent_bad.v
t_lint_mod_paren_bad.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_lint_mod_paren_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_lint_mod_paren_bad.v
t_lint_modmissing.py Add `MODMISSING` error, in place of unnamed error (#6054). 2025-05-29 21:02:00 -04:00
t_lint_modmissing.v Add `MODMISSING` error, in place of unnamed error (#6054). 2025-05-29 21:02:00 -04:00
t_lint_modport_dir_bad.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_lint_modport_dir_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_lint_modport_dir_bad.v
t_lint_multidriven_bad.out Refactor V3Delay for extensibility (#5516) 2024-10-09 10:39:40 +01:00
t_lint_multidriven_bad.py Tests: Fix relocation of extract tests 2025-04-30 23:02:19 -04:00
t_lint_multidriven_bad.v
t_lint_nolatch_bad.out
t_lint_nolatch_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_lint_nolatch_bad.v
t_lint_nullport_bad.out
t_lint_nullport_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_lint_nullport_bad.v
t_lint_numwidth.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_lint_numwidth.v
t_lint_once_bad.out
t_lint_once_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_lint_once_bad.v
t_lint_only.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_lint_only.v
t_lint_pindup_bad.out Change cell messages to instance to match IEEE 2025-05-03 04:00:47 -04:00
t_lint_pindup_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_lint_pindup_bad.v
t_lint_pinmissing_bad.out Change cell messages to instance to match IEEE 2025-05-03 04:00:47 -04:00
t_lint_pinmissing_bad.py Tests: Fix relocation of extract tests 2025-04-30 23:02:19 -04:00
t_lint_pinmissing_bad.v Commentary: Clarify some warning messages. 2024-07-20 17:50:14 -04:00
t_lint_pinnotfound.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_lint_pinnotfound.v
t_lint_pinnotfound_bad.out
t_lint_pinnotfound_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_lint_pinnotfound_bad.v
t_lint_pkg_colon_bad.out Support `specparam` (#5767). 2025-06-28 08:23:43 -04:00
t_lint_pkg_colon_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_lint_pkg_colon_bad.v
t_lint_pragma_protected.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_lint_pragma_protected.v
t_lint_pragma_protected_bad.out Fix spelling 2025-05-16 19:02:19 -04:00
t_lint_pragma_protected_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_lint_pragma_protected_bad.v Tests: Close misc internal code coverage holes 2024-07-28 14:18:24 -04:00
t_lint_procassinit_bad.out Add PROCINITASSIGN on initial assignments to process variables (#2481). 2025-04-30 22:00:06 -04:00
t_lint_procassinit_bad.py Tests: Fix relocation of extract tests 2025-04-30 23:02:19 -04:00
t_lint_procassinit_bad.v Add PROCINITASSIGN on initial assignments to process variables (#2481). 2025-04-30 22:00:06 -04:00
t_lint_realcvt_bad.out Fix REALCVT warning on integral timescale conversions (#5378). 2024-08-24 08:01:28 -04:00
t_lint_realcvt_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_lint_realcvt_bad.v Fix REALCVT warning on integral timescale conversions (#5378). 2024-08-24 08:01:28 -04:00
t_lint_removed_unused_loop_bad.out
t_lint_removed_unused_loop_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_lint_removed_unused_loop_bad.v Add PROCINITASSIGN on initial assignments to process variables (#2481). 2025-04-30 22:00:06 -04:00
t_lint_repeat_bad.out
t_lint_repeat_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_lint_repeat_bad.v
t_lint_restore_bad.out
t_lint_restore_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_lint_restore_bad.v
t_lint_restore_prag_bad.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_lint_restore_prag_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_lint_restore_prag_bad.v
t_lint_rsvd_bad.out Add lib.map information to unsupported message, etc 2025-05-03 05:30:40 -04:00
t_lint_rsvd_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_lint_rsvd_bad.v
t_lint_setout_bad.out
t_lint_setout_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_lint_setout_bad.v
t_lint_setout_bad_noinl.out
t_lint_setout_bad_noinl.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_lint_sideeffect_bad.out
t_lint_sideeffect_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_lint_sideeffect_bad.v
t_lint_stmtdly_bad.out
t_lint_stmtdly_bad.py Tests: Fix relocation of extract tests 2025-04-30 23:02:19 -04:00
t_lint_stmtdly_bad.v
t_lint_subout_bad.out
t_lint_subout_bad.py Change `--trace` to `--trace-vcd`. 2025-04-05 10:46:39 -04:00
t_lint_subout_bad.v
t_lint_syncasyncnet_bad.out
t_lint_syncasyncnet_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_lint_syncasyncnet_bad.v
t_lint_top_bad.out
t_lint_top_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_lint_top_bad.v Tests: Untabify some tests. 2024-09-01 21:12:37 -04:00
t_lint_unsigned_bad.out
t_lint_unsigned_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_lint_unsigned_bad.v
t_lint_unsup_deassign.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_lint_unsup_deassign.v
t_lint_unsup_mixed.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_lint_unsup_mixed.v
t_lint_unused.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_lint_unused.v
t_lint_unused_bad.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_lint_unused_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_lint_unused_bad.v
t_lint_unused_iface.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_lint_unused_iface.v
t_lint_unused_iface_bad.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_lint_unused_iface_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_lint_unused_iface_bad.v
t_lint_unused_tri.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_lint_unused_tri.v
t_lint_vcmarker_bad.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_lint_vcmarker_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_lint_vcmarker_bad.v
t_lint_wait_bad.out
t_lint_wait_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_lint_warn_incfile2_bad.out
t_lint_warn_incfile2_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_lint_warn_incfile2_bad.v
t_lint_warn_incfile2_bad_b.vh
t_lint_warn_line_bad.out
t_lint_warn_line_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_lint_warn_line_bad.v
t_lint_width.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_lint_width.v
t_lint_width_arraydecl.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_lint_width_arraydecl.v Fix WIDTHCONCAT on packed pattern assignment (#6045). 2025-05-31 07:38:15 -04:00
t_lint_width_bad.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_lint_width_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_lint_width_bad.v
t_lint_width_cast.py Fix suppression of WIDTH* warnings when immediately under a size cast (#3417). 2024-09-19 22:56:47 -04:00
t_lint_width_cast.v Fix suppression of WIDTH* warnings when immediately under a size cast (#3417). 2024-09-19 22:56:47 -04:00
t_lint_width_genfor.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_lint_width_genfor.v
t_lint_width_genfor_bad.out
t_lint_width_genfor_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_lint_width_genfor_bad.v
t_lint_width_shift_bad.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_lint_width_shift_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_lint_width_shift_bad.v Fix WIDTHEXPAND on left shift of intuitive amount (#5284). 2024-07-24 06:39:27 -04:00
t_lint_widthexpand_docs_bad.out
t_lint_widthexpand_docs_bad.py Tests: Fix relocation of extract tests 2025-04-30 23:02:19 -04:00
t_lint_widthexpand_docs_bad.v
t_mailbox.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_mailbox.v
t_mailbox_array.py Fix mis-aliasing of instances with mailbox parameter types (#5632 partial). 2024-11-29 09:20:02 -05:00
t_mailbox_array.v Fix mis-aliasing of instances with mailbox parameter types (#5632 partial). 2024-11-29 09:20:02 -05:00
t_mailbox_bad.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_mailbox_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_mailbox_bad.v
t_mailbox_class.py Tests: Cleanup as --binary implies --timing. No test functional change. 2025-03-29 15:50:07 -04:00
t_mailbox_class.v
t_mailbox_concurrent.out Fix concurrency for mailbox and semaphores (#5222) 2024-07-03 22:29:32 +01:00
t_mailbox_concurrent.py Tests: Cleanup as --binary implies --timing. No test functional change. 2025-03-29 15:50:07 -04:00
t_mailbox_concurrent.v Fix concurrency for mailbox and semaphores (#5222) 2024-07-03 22:29:32 +01:00
t_mailbox_notiming.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_mailbox_notiming.v
t_mailbox_std.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_mailbox_unbounded.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_mailbox_unbounded.v
t_math_arith.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_math_arith.v
t_math_clog2.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_math_clog2.v
t_math_cmp.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_math_cmp.v
t_math_concat.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_math_concat.v
t_math_concat0.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_math_concat0.v
t_math_concat64.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_math_concat64.v
t_math_cond_clean.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_math_cond_clean.v
t_math_cond_huge.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_math_cond_huge.v
t_math_cond_huge_noexpand.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_math_const.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_math_const.v
t_math_countbits.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_math_countbits.v
t_math_countbits2_bad.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_math_countbits2_bad.py Fix detecting bad datatype on $countones (#5674). 2025-03-15 21:57:10 -04:00
t_math_countbits2_bad.v Fix detecting bad datatype on $countones (#5674). 2025-03-15 21:57:10 -04:00
t_math_countbits_bad.out Tests: Remove unused clk input 2024-10-07 21:44:07 -04:00
t_math_countbits_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_math_countbits_bad.v Tests: Remove unused clk input 2024-10-07 21:44:07 -04:00
t_math_countbits_tri.py Fix `$countbits` in assert with non-tristates (#5566). 2024-10-27 09:30:54 -04:00
t_math_countbits_tri.v Fix `$countbits` in assert with non-tristates (#5566). 2024-10-27 09:30:54 -04:00
t_math_cv_bitop.out Fix constant propagation of post-expand stages (#5983). 2025-05-05 07:04:20 -04:00
t_math_cv_bitop.py Fix constant propagation of post-expand stages (#5983). 2025-05-05 07:04:20 -04:00
t_math_cv_bitop.v Fix constant propagation of post-expand stages (#5983). 2025-05-05 07:04:20 -04:00
t_math_cv_concat.py Fix constant propagation of post-expand stages (#5963) (#5972). 2025-05-04 21:41:14 -04:00
t_math_cv_concat.v Fix constant propagation of post-expand stages (#5963) (#5972). 2025-05-04 21:41:14 -04:00
t_math_cv_format.py Fix constant propagation of post-expand stages (#5963) (#5972). 2025-05-04 21:41:14 -04:00
t_math_cv_format.v Fix constant propagation of post-expand stages (#5963) (#5972). 2025-05-04 21:41:14 -04:00
t_math_div.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_math_div.v
t_math_div0.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_math_div0.v
t_math_div_noexpand.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_math_divw.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_math_divw.v Tests: Remove unused clk input 2024-10-07 21:44:07 -04:00
t_math_eq.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_math_eq.v Fix ==? and !=? with X values. 2024-07-28 14:40:55 -04:00
t_math_eq_bad.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_math_eq_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_math_eq_bad.v
t_math_eq_noexpand.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_math_equal.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_math_equal.v
t_math_imm.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_math_imm.v
t_math_imm2.cpp
t_math_imm2.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_math_imm2.v
t_math_insert_bound.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_math_insert_bound.v
t_math_mul.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_math_mul.v
t_math_pick.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_math_pick.v
t_math_pow.out
t_math_pow.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_math_pow.v
t_math_pow2.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_math_pow2.v
t_math_pow3.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_math_pow3.v
t_math_pow4.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_math_pow4.v
t_math_pow5.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_math_pow5.v
t_math_pow6.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_math_pow6.v
t_math_pow7.cpp
t_math_pow7.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_math_pow7.v
t_math_precedence.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_math_precedence.v
t_math_real.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_math_real.v Tests: Fix ubuntu24.04-arm issues 2025-03-22 16:55:53 -04:00
t_math_real_public.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_math_real_public.v Add error on instances without parenthesis. 2024-09-22 12:25:35 -04:00
t_math_real_random.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_math_real_random.v
t_math_real_round.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_math_real_round.v
t_math_red.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_math_red.v
t_math_red_noexpand.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_math_repl.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_math_repl.v
t_math_repl2_bad.out Add hint of the signed rhsval in oversized replication error (#6098) 2025-06-17 16:59:18 -07:00
t_math_repl2_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_math_repl2_bad.v
t_math_repl_bad.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_math_repl_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_math_repl_bad.v
t_math_reverse.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_math_reverse.v
t_math_shift.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_math_shift.v
t_math_shift_extend.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_math_shift_extend.v
t_math_shift_huge.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_math_shift_huge.v
t_math_shift_noexpand.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_math_shift_rep.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_math_shift_rep.v
t_math_shift_sel.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_math_shift_sel.v
t_math_shift_side.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_math_shift_side.v
t_math_shiftls.py Fix arithmetic left-shift by constants over 32 bits (#6007) (#6015) 2025-05-16 21:57:52 -04:00
t_math_shiftls.v Fix arithmetic left-shift by constants over 32 bits (#6007) (#6015) 2025-05-16 21:57:52 -04:00
t_math_shiftrs.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_math_shiftrs.v
t_math_shiftrs2.py Fix arithmetic right-shift by constants over 32 bits (#5994). 2025-05-10 13:59:56 -04:00
t_math_shiftrs2.v Fix arithmetic right-shift by constants over 32 bits (#5994). 2025-05-10 13:59:56 -04:00
t_math_shortcircuit_assocsel.py Fix short-circuting with associative array access (#5484). 2024-09-24 19:24:01 -04:00
t_math_shortcircuit_assocsel.v Fix short-circuting with associative array access (#5484). 2024-09-24 19:24:01 -04:00
t_math_shortcircuit_dynsel.py Fix short-circuting on method calls (#5486). 2024-09-24 20:24:27 -04:00
t_math_shortcircuit_dynsel.v Fix short-circuting on method calls (#5486). 2024-09-24 20:24:27 -04:00
t_math_shortreal.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_math_shortreal.v Tests: Remove ancient GCC 4.4 skip. 2024-08-29 19:25:22 -04:00
t_math_shortreal_unsup_bad.out
t_math_shortreal_unsup_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_math_shortreal_unsup_bad.v
t_math_sign_extend.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_math_sign_extend.v Tests: Remove unused clk input 2024-10-07 21:44:07 -04:00
t_math_signed.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_math_signed.v
t_math_signed2.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_math_signed2.v
t_math_signed3.py Tests: Fix t_math_signed3 test (#5995) 2025-05-09 11:09:33 -04:00
t_math_signed3.v Tests: Fix t_math_signed3 test (#5995) 2025-05-09 11:09:33 -04:00
t_math_signed3_noopt.py Tests: Fix t_math_signed3 test (#5995) 2025-05-09 11:09:33 -04:00
t_math_signed4.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_math_signed4.v
t_math_signed5.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_math_signed5.v
t_math_signed5_timing.py Tests: Cleanup as --binary implies --timing. No test functional change. 2025-03-29 15:50:07 -04:00
t_math_signed6.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_math_signed6.v
t_math_signed7.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_math_signed7.v
t_math_signed_calc.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_math_signed_calc.v
t_math_signed_noexpand.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_math_signed_wire.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_math_signed_wire.v
t_math_strwidth.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_math_strwidth.v
t_math_svl.py Tests: Move per-command expect= to instead check logfiles 2024-09-19 18:53:22 -04:00
t_math_svl.v
t_math_svl2.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_math_svl2.v
t_math_swap.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_math_swap.v
t_math_tri.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_math_tri.v
t_math_trig.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_math_trig.v
t_math_vgen.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_math_vgen.v
t_math_vliw.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_math_vliw.v
t_math_vliw_noexpand.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_math_wide_bad.out Fix checking for too-wide divide and modulus (#6003) (#6006) 2025-05-15 10:43:45 -04:00
t_math_wide_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_math_wide_bad.v Fix checking for too-wide divide and modulus (#6003) (#6006) 2025-05-15 10:43:45 -04:00
t_math_wide_inc.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_math_wide_inc.v
t_math_width.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_math_width.v
t_math_yosys.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_math_yosys.v
t_mem.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_mem.v
t_mem_banks.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_mem_banks.v
t_mem_bound_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_mem_bound_bad.v
t_mem_cond.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_mem_cond.v
t_mem_fifo.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_mem_fifo.v
t_mem_file.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_mem_file.v
t_mem_first.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_mem_first.v
t_mem_func.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_mem_func.v
t_mem_iforder.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_mem_iforder.v
t_mem_multi_io.py Change `--trace` to `--trace-vcd`. 2025-04-05 10:46:39 -04:00
t_mem_multi_io.v
t_mem_multi_io2.cpp
t_mem_multi_io2.v
t_mem_multi_io2_cc.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_mem_multi_io2_sc.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_mem_multi_io3.cpp
t_mem_multi_io3.v
t_mem_multi_io3_cc.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_mem_multi_io3_sc.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_mem_multi_ref_bad.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_mem_multi_ref_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_mem_multi_ref_bad.v
t_mem_multidim.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_mem_multidim.v Safely support non-overlapping blocking/non-blocking assignments (#6137) 2025-06-28 20:45:45 +01:00
t_mem_multidim_Ox.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_mem_multidim_trace.py Change `--trace` to `--trace-vcd`. 2025-04-05 10:46:39 -04:00
t_mem_multiwire.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_mem_multiwire.v
t_mem_packed.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_mem_packed.v
t_mem_packed_assign.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_mem_packed_assign.v
t_mem_packed_bad.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_mem_packed_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_mem_packed_bad.v
t_mem_packed_noexpand.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_mem_shift.py Refactor V3Delay for extensibility (#5516) 2024-10-09 10:39:40 +01:00
t_mem_shift.v
t_mem_slice.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_mem_slice.v
t_mem_slice_bad.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_mem_slice_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_mem_slice_bad.v
t_mem_slice_conc_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_mem_slice_conc_bad.v
t_mem_slice_dtype_bad.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_mem_slice_dtype_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_mem_slice_dtype_bad.v
t_mem_slot.cpp
t_mem_slot.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_mem_slot.v
t_mem_trace_split.py Change `--trace` to `--trace-vcd`. 2025-04-05 10:46:39 -04:00
t_mem_trace_split.v Fix array trace splitting (#5549) 2024-10-23 11:51:48 -04:00
t_mem_twoedge.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_mem_twoedge.v
t_merge_cond.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_merge_cond.v
t_merge_cond_blowup.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_merge_cond_blowup.v
t_merge_cond_bug_3409.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_merge_cond_bug_3409.v
t_merge_cond_motion_branch.py Fix invalid code motion over branches (#5811) (#5814) 2025-02-28 13:32:03 -05:00
t_merge_cond_motion_branch.v Fix invalid code motion over branches (#5811) (#5814) 2025-02-28 13:32:03 -05:00
t_merge_cond_no_extend.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_merge_cond_no_extend.v
t_merge_cond_no_motion.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_metacmt_onoff.out
t_metacmt_onoff.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_metacmt_onoff.v
t_mod_automatic.py Fix `module automatic` 2024-11-13 07:10:48 -05:00
t_mod_automatic.v Fix `module automatic` 2024-11-13 07:10:48 -05:00
t_mod_dollar$.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_mod_dollar$.v
t_mod_dup_bad.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_mod_dup_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_mod_dup_bad.v
t_mod_dup_ign.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_mod_dup_ign.v
t_mod_interface_array0.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_mod_interface_array0.v
t_mod_interface_array0_noinl.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_mod_interface_array1.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_mod_interface_array1.v
t_mod_interface_array1_noinl.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_mod_interface_array2.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_mod_interface_array2.v
t_mod_interface_array2_noinl.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_mod_interface_array3.out Tests: Fix interface syntax error 2024-11-09 17:22:16 -05:00
t_mod_interface_array3.py Tests: Disable running some lint tests on vltmt 2025-03-29 07:14:45 -04:00
t_mod_interface_array3.v Tests: Fix interface syntax error 2024-11-09 17:22:16 -05:00
t_mod_interface_array4.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_mod_interface_array4.v
t_mod_interface_array4_noinl.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_mod_interface_array5.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_mod_interface_array5.v
t_mod_interface_array6.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_mod_interface_array6.v
t_mod_interface_array6_noinl.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_mod_longname.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_mod_longname.v
t_mod_mod.out Tests: Add module-in-module coverage 2024-12-19 21:42:52 -05:00
t_mod_mod.py Tests: Add module-in-module coverage 2024-12-19 21:42:52 -05:00
t_mod_mod.v Tests: Add module-in-module coverage 2024-12-19 21:42:52 -05:00
t_mod_nomod.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_mod_nomod.v
t_mod_recurse.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_mod_recurse.v
t_mod_recurse1.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_mod_recurse1.v Add error on instances without parenthesis. 2024-09-22 12:25:35 -04:00
t_mod_topmodule.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_mod_topmodule.v
t_mod_topmodule_nest.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_mod_topmodule_nest.v
t_mod_uselib.py Tests: Fix some non-IEEE issues in tests. 2024-09-27 09:00:20 -04:00
t_mod_uselib.v
t_module_class_static_method.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_module_class_static_method.v
t_module_input_default_value.py Fix port default values with `--coverage-line` creating `0=0` (#5920). 2025-04-08 20:48:57 -04:00
t_module_input_default_value.v Fix parsing input wire with default and range (#5800). 2025-02-24 03:51:49 -05:00
t_module_input_default_value_1_bad.out Support default value on module input (#5358) (#5373) 2024-08-15 10:04:07 -04:00
t_module_input_default_value_1_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_module_input_default_value_1_bad.v Support default value on module input (#5358) (#5373) 2024-08-15 10:04:07 -04:00
t_module_input_default_value_2_bad.out Support default value on module input (#5358) (#5373) 2024-08-15 10:04:07 -04:00
t_module_input_default_value_2_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_module_input_default_value_2_bad.v Support default value on module input (#5358) (#5373) 2024-08-15 10:04:07 -04:00
t_module_input_default_value_3_bad.out Support default value on module input (#5358) (#5373) 2024-08-15 10:04:07 -04:00
t_module_input_default_value_3_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_module_input_default_value_3_bad.v Support default value on module input (#5358) (#5373) 2024-08-15 10:04:07 -04:00
t_module_input_default_value_noinl.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_multitop1.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_multitop1.v
t_multitop1s.v
t_multitop_sig.cpp
t_multitop_sig.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_multitop_sig.v
t_multitop_sig_bad.out
t_multitop_sig_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_name_collision.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_name_collision.v
t_nba_assign_on_rhs.py Safely support non-overlapping blocking/non-blocking assignments (#6137) 2025-06-28 20:45:45 +01:00
t_nba_assign_on_rhs.v Safely support non-overlapping blocking/non-blocking assignments (#6137) 2025-06-28 20:45:45 +01:00
t_nba_commit_queue.py Refactor V3Delay for extensibility (#5516) 2024-10-09 10:39:40 +01:00
t_nba_commit_queue.v Tests: Fix string !== for other simulators. 2024-10-03 18:14:53 -04:00
t_nba_commit_queue_suspenable.py Refactor V3Delay for extensibility (#5516) 2024-10-09 10:39:40 +01:00
t_nba_commit_queue_suspenable.v Refactor V3Delay for extensibility (#5516) 2024-10-09 10:39:40 +01:00
t_nba_mixed_update_clocked.py Safely support non-overlapping blocking/non-blocking assignments (#6137) 2025-06-28 20:45:45 +01:00
t_nba_mixed_update_clocked.v Safely support non-overlapping blocking/non-blocking assignments (#6137) 2025-06-28 20:45:45 +01:00
t_nba_mixed_update_comb.py Safely support non-overlapping blocking/non-blocking assignments (#6137) 2025-06-28 20:45:45 +01:00
t_nba_mixed_update_comb.v Safely support non-overlapping blocking/non-blocking assignments (#6137) 2025-06-28 20:45:45 +01:00
t_nba_shared_flag_reuse.py Tests: Cleanup as --binary implies --timing. No test functional change. 2025-03-29 15:50:07 -04:00
t_nba_shared_flag_reuse.v Fix NBA shared flag reuse (#5848) 2025-03-11 07:40:21 -04:00
t_nba_struct_array.py Fix NBAs to unpacked arrays of unpacked structs (#5603) 2024-11-10 17:38:28 +00:00
t_nba_struct_array.v Fix NBAs to unpacked arrays of unpacked structs (#5603) 2024-11-10 17:38:28 +00:00
t_net_delay.out Add PROCINITASSIGN on initial assignments to process variables (#2481). 2025-04-30 22:00:06 -04:00
t_net_delay.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_net_delay.v Add PROCINITASSIGN on initial assignments to process variables (#2481). 2025-04-30 22:00:06 -04:00
t_net_delay_timing.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_net_delay_timing_sc.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_nettype.out Parse elaboration-time nettype declarations (as UNSUPPORTED) 2024-09-21 21:00:02 -04:00
t_nettype.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_nettype.v
t_no_sel_assign_merge_in_cpp.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_no_sel_assign_merge_in_cpp.v
t_no_std_bad.out Remove symbol table from parser: Support redeclaring type as non-type; major parsing change (#2412). 2025-05-18 07:13:37 -04:00
t_no_std_bad.py Tests: Disable running some lint tests on vltmt 2025-03-29 07:14:45 -04:00
t_no_std_bad.v
t_no_std_pkg_bad.py Tests: Disable running some lint tests on vltmt 2025-03-29 07:14:45 -04:00
t_no_trace_top.cpp
t_no_trace_top.out
t_no_trace_top.py Change `--trace` to `--trace-vcd`. 2025-04-05 10:46:39 -04:00
t_nonsequential_udp.py Support user-defined primitives (UDPs) (#468) (#5807) (#5936) 2025-04-16 06:32:18 -04:00
t_nonsequential_udp.v Support user-defined primitives (UDPs) (#468) (#5807) (#5936) 2025-04-16 06:32:18 -04:00
t_notiming.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_notiming.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_notiming.v
t_notiming_off.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_notiming_off.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_opt_const.cpp Tests: Rename some tests into proper groups. No functional change. 2024-09-21 10:04:58 -04:00
t_opt_const.py Automatically split some packed variables (#5843) 2025-03-09 10:31:01 -04:00
t_opt_const.v Fix wrong optimization result of shifted out variable (#6016) (#6019) 2025-05-18 07:18:37 -04:00
t_opt_const_cov.py Change `--trace` to `--trace-vcd`. 2025-04-05 10:46:39 -04:00
t_opt_const_cov.v Tests: Rename some tests into proper groups. No functional change. 2024-09-21 10:04:58 -04:00
t_opt_const_dfg.py Fix const-bit-op-tree with single-bit masks (#5993) (#5998) 2025-05-10 06:01:15 -04:00
t_opt_const_no_expand.py Tests: Cleanup some .cpp paths. No test functional change indended. 2025-04-25 20:57:11 -04:00
t_opt_const_or.py Tests: Rename some tests into proper groups. No functional change. 2024-09-21 10:04:58 -04:00
t_opt_const_or.v Tests: Rename some tests into proper groups. No functional change. 2024-09-21 10:04:58 -04:00
t_opt_const_red.py Tests: Rename some tests into proper groups. No functional change. 2024-09-21 10:04:58 -04:00
t_opt_const_red.v Tests: Rename some tests into proper groups. No functional change. 2024-09-21 10:04:58 -04:00
t_opt_const_shortcut.cpp Tests: Rename some tests into proper groups. No functional change. 2024-09-21 10:04:58 -04:00
t_opt_const_shortcut.py Tests: Rename some tests into proper groups. No functional change. 2024-09-21 10:04:58 -04:00
t_opt_const_shortcut.v Tests: Rename some tests into proper groups. No functional change. 2024-09-21 10:04:58 -04:00
t_opt_dead.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_opt_dead.v
t_opt_dead_enumpkg.py Fix segfault when only enum value referenced in package (#5714). 2025-01-04 10:36:34 -05:00
t_opt_dead_enumpkg.v Fix segfault when only enum value referenced in package (#5714). 2025-01-04 10:36:34 -05:00
t_opt_dead_noassigns.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_opt_dead_noassigns.v
t_opt_dead_nocells.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_opt_dead_nocells.v
t_opt_expand_keep_widths.out Preserve C++ widths in V3Expand (#5975) 2025-05-04 16:31:27 +01:00
t_opt_expand_keep_widths.py Preserve C++ widths in V3Expand (#5975) 2025-05-04 16:31:27 +01:00
t_opt_expand_keep_widths.v Preserve C++ widths in V3Expand (#5975) 2025-05-04 16:31:27 +01:00
t_opt_if_array.py Tests: renames 2025-01-25 10:24:59 -05:00
t_opt_if_array.v Tests: renames 2025-01-25 10:24:59 -05:00
t_opt_ifjumpgo.py Optimize labels as final `if` block statements (#5744). 2025-01-25 10:29:35 -05:00
t_opt_ifjumpgo.v Optimize labels as final `if` block statements (#5744). 2025-01-25 10:29:35 -05:00
t_opt_inline_funcs.py Add `--fno-inline-funcs` to disable function inlining. 2024-11-25 19:59:10 -05:00
t_opt_inline_funcs.v Add `--fno-inline-funcs` to disable function inlining. 2024-11-25 19:59:10 -05:00
t_opt_inline_funcs_no.py Add `--fno-inline-funcs` to disable function inlining. 2024-11-25 19:59:10 -05:00
t_opt_localize_deep.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_opt_localize_deep.v
t_opt_localize_max_size.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_opt_localize_max_size.v
t_opt_localize_max_size_1.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_opt_redor.py Tests: renames 2025-01-25 10:24:59 -05:00
t_opt_redor.v Tests: renames 2025-01-25 10:24:59 -05:00
t_opt_slice.py Add `--fno-slice` to disable array assignment slicing (#5644). 2024-11-28 13:49:34 -05:00
t_opt_slice.v Add `--fno-slice` to disable array assignment slicing (#5644). 2024-11-28 13:49:34 -05:00
t_opt_slice_no.py Add `--fno-slice` to disable array assignment slicing (#5644). 2024-11-28 13:49:34 -05:00
t_opt_table_display.out
t_opt_table_display.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_opt_table_display.v
t_opt_table_enum.out
t_opt_table_enum.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_opt_table_enum.v
t_opt_table_packed_array.out
t_opt_table_packed_array.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_opt_table_packed_array.v
t_opt_table_real.out Fix table optimization when applied on real data type (#5172) (#5173) 2024-06-11 13:26:11 -04:00
t_opt_table_real.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_opt_table_real.v Fix table optimization when applied on real data type (#5172) (#5173) 2024-06-11 13:26:11 -04:00
t_opt_table_same.out
t_opt_table_same.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_opt_table_same.v
t_opt_table_signed.out
t_opt_table_signed.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_opt_table_signed.v
t_opt_table_sparse.out
t_opt_table_sparse.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_opt_table_sparse.v
t_opt_table_sparse_output_split.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_opt_table_string.out
t_opt_table_string.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_opt_table_string.v
t_opt_table_struct.out
t_opt_table_struct.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_opt_table_struct.v
t_order.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_order.v
t_order_2d.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_order_2d.v
t_order_a.v
t_order_b.v
t_order_blkandnblk_bad.out Safely support non-overlapping blocking/non-blocking assignments (#6137) 2025-06-28 20:45:45 +01:00
t_order_blkandnblk_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_order_blkandnblk_bad.v Safely support non-overlapping blocking/non-blocking assignments (#6137) 2025-06-28 20:45:45 +01:00
t_order_blkloopinit_bad.out Refactor V3Delay for extensibility (#5516) 2024-10-09 10:39:40 +01:00
t_order_blkloopinit_bad.py Refactor V3Delay for extensibility (#5516) 2024-10-09 10:39:40 +01:00
t_order_blkloopinit_bad.v Refactor V3Delay for extensibility (#5516) 2024-10-09 10:39:40 +01:00
t_order_clkinst.out
t_order_clkinst.py Change `--trace` to `--trace-vcd`. 2025-04-05 10:46:39 -04:00
t_order_clkinst.v Safely support non-overlapping blocking/non-blocking assignments (#6137) 2025-06-28 20:45:45 +01:00
t_order_comboclkloop.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_order_comboclkloop.v Safely support non-overlapping blocking/non-blocking assignments (#6137) 2025-06-28 20:45:45 +01:00
t_order_comboloop.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_order_comboloop.v
t_order_doubleloop.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_order_doubleloop.v
t_order_dpi_export_1.cpp
t_order_dpi_export_1.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_order_dpi_export_1.v
t_order_dpi_export_2.cpp
t_order_dpi_export_2.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_order_dpi_export_2.v
t_order_dpi_export_3.cpp
t_order_dpi_export_3.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_order_dpi_export_3.v
t_order_dpi_export_4.cpp
t_order_dpi_export_4.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_order_dpi_export_4.v
t_order_dpi_export_5.cpp
t_order_dpi_export_5.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_order_dpi_export_5.v
t_order_dpi_export_6.cpp
t_order_dpi_export_6.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_order_dpi_export_6.v
t_order_dpi_export_7.cpp
t_order_dpi_export_7.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_order_dpi_export_7.v
t_order_dpi_export_8.cpp
t_order_dpi_export_8.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_order_dpi_export_8.v
t_order_first.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_order_first.v
t_order_loop_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_order_loop_bad.v
t_order_multialways.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_order_multialways.v
t_order_multidriven.cpp
t_order_multidriven.py Change `--trace` to `--trace-vcd`. 2025-04-05 10:46:39 -04:00
t_order_multidriven.v
t_order_quad.cpp
t_order_quad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_order_quad.v
t_order_timing.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_order_wireloop.py Tests: Move per-command expect= to instead check logfiles 2024-09-19 18:53:22 -04:00
t_order_wireloop.v
t_output_groups.py Add `-output-groups` to build with concatenated .cpp files (#5257) 2024-09-30 21:42:36 -04:00
t_output_groups.v Add `-output-groups` to build with concatenated .cpp files (#5257) 2024-09-30 21:42:36 -04:00
t_package.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_package.v
t_package_abs.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_package_abs.v
t_package_alone_bad.out Disable symbol from parser: Support redeclaring type as non-type; major parsing change (#2412). 2025-05-18 07:13:37 -04:00
t_package_alone_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_package_alone_bad.v
t_package_ddecl.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_package_ddecl.v
t_package_ddecl_timing.py Tests: Cleanup as --binary implies --timing. No test functional change. 2025-03-29 15:50:07 -04:00
t_package_dimport.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_package_dimport.v Tests: Remove unused clk input 2024-10-07 21:44:07 -04:00
t_package_dot.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_package_dot.v
t_package_dup_bad.out
t_package_dup_bad.py Tests: Disable running some lint tests on vltmt 2025-03-29 07:14:45 -04:00
t_package_dup_bad.v
t_package_enum.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_package_enum.v
t_package_export.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_package_export.v Tests: Remove unused clk input 2024-10-07 21:44:07 -04:00
t_package_export_bad.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_package_export_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_package_export_bad2.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_package_export_bad2.py Change package import/export to link post-parsing, prep for later commit. 2024-09-28 20:55:22 -04:00
t_package_export_bad2.v Change package import/export to link post-parsing, prep for later commit. 2024-09-28 20:55:22 -04:00
t_package_identifier_bad.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_package_identifier_bad.py Tests: Rename some tests 2024-11-10 20:00:16 -05:00
t_package_identifier_bad.v Tests: Rename some tests 2024-11-10 20:00:16 -05:00
t_package_import_bad2.out Remove symbol table from parser: Support redeclaring type as non-type; major parsing change (#2412). 2025-05-18 07:13:37 -04:00
t_package_import_bad2.py Change package import/export to link post-parsing, prep for later commit. 2024-09-28 20:55:22 -04:00
t_package_import_bad2.v Change package import/export to link post-parsing, prep for later commit. 2024-09-28 20:55:22 -04:00
t_package_local_bad.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_package_local_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_package_local_bad.v Support parsing and otherwise ignoring inline constraints (#5126) 2024-06-13 08:38:20 -04:00
t_package_param.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_package_param.v
t_package_struct.out
t_package_struct.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_package_struct.v
t_package_twodeep.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_package_twodeep.v Tests: Remove unused clk input 2024-10-07 21:44:07 -04:00
t_package_using_dollar_unit.py Tests: Rename some tests 2024-11-10 20:00:16 -05:00
t_package_using_dollar_unit.v Tests: Rename some tests 2024-11-10 20:00:16 -05:00
t_package_verb.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_package_verb.v
t_packed_concat.v Tests: Remove unused clk input 2024-10-07 21:44:07 -04:00
t_packed_concat_bad.out Tests: Remove unused clk input 2024-10-07 21:44:07 -04:00
t_packed_concat_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_packed_concat_bad.v Tests: Remove unused clk input 2024-10-07 21:44:07 -04:00
t_param.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_param.v
t_param_array.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_param_array.v
t_param_array2.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_param_array2.v
t_param_array3.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_param_array3.v
t_param_array4.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_param_array4.v
t_param_array5.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_param_array5.v
t_param_array6.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_param_array6.v
t_param_array6_noslice.py Fix VL_UNLIKELY with constructors 2025-01-11 15:27:11 -05:00
t_param_array7.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_param_array7.v
t_param_array8.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_param_array8.v
t_param_avec.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_param_avec.v Add error on instances without parenthesis. 2024-09-22 12:25:35 -04:00
t_param_bit_sel.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_param_bit_sel.v
t_param_bracket.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_param_bracket.v
t_param_ceil.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_param_ceil.v
t_param_chain.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_param_chain.v
t_param_circ_bad.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_param_circ_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_param_circ_bad.v
t_param_concat.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_param_concat.v
t_param_concat_bad.out
t_param_concat_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_param_const_part.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_param_const_part.v
t_param_ddeep_width.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_param_ddeep_width.v
t_param_default.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_param_default.v
t_param_default_bad.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_param_default_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_param_default_bad.v
t_param_default_presv_bad.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_param_default_presv_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_param_first.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_param_first.v
t_param_first_a.v
t_param_first_b.v
t_param_func.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_param_func.v
t_param_func2.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_param_func2.v
t_param_if_blk.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_param_if_blk.v Safely support non-overlapping blocking/non-blocking assignments (#6137) 2025-06-28 20:45:45 +01:00
t_param_implicit_local_bad.out
t_param_implicit_local_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_param_implicit_local_bad.v
t_param_in_func.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_param_in_func.v
t_param_in_func_noinline.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_param_local.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_param_local.v
t_param_long.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_param_long.v
t_param_mem_attr.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_param_mem_attr.v
t_param_mintypmax.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_param_mintypmax.v
t_param_module.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_param_module.v
t_param_named.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_param_named.v
t_param_named_2.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_param_named_2.v
t_param_no_parentheses.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_param_no_parentheses.v
t_param_noval_bad.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_param_noval_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_param_noval_bad.v Improve error when no parameter type value (#5645 partial) 2024-11-28 14:09:06 -05:00
t_param_package.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_param_package.v
t_param_passed_to_port.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_param_passed_to_port.v
t_param_pattern.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_param_pattern.v
t_param_pattern2.py Tests: Parameter pattern init (#3144) 2025-03-08 19:13:20 -05:00
t_param_pattern2.v Tests: Parameter pattern init (#3144) 2025-03-08 19:13:20 -05:00
t_param_pattern_init.py Tests: Renames 2024-11-14 21:05:59 -05:00
t_param_pattern_init.v Fix imported array assignment literals (#5642) (#5648) 2024-12-02 15:08:47 -05:00
t_param_public.cpp
t_param_public.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_param_public.v Tests: Remove unused clk input 2024-10-07 21:44:07 -04:00
t_param_real.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_param_real.v
t_param_real2.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_param_real2.v
t_param_real2_collision.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_param_repl.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_param_repl.v
t_param_resolve_args.py Fix type_id package scope resolution (#5826) 2025-03-06 17:41:27 -05:00
t_param_resolve_args.v Fix type_id package scope resolution (#5826) 2025-03-06 17:41:27 -05:00
t_param_scope_bad.out
t_param_scope_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_param_scope_bad.v
t_param_seg.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_param_seg.v
t_param_sel.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_param_sel.v
t_param_sel_range.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_param_sel_range.v
t_param_sel_range_bad.out
t_param_sel_range_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_param_shift.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_param_shift.v
t_param_store_bad.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_param_store_bad.py Add error when improperly storing to parameter (#5147). 2024-11-05 00:17:40 -05:00
t_param_store_bad.v Add error when improperly storing to parameter (#5147). 2024-11-05 00:17:40 -05:00
t_param_type.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_param_type.v
t_param_type2.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_param_type2.v
t_param_type3.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_param_type3.v
t_param_type4.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_param_type4.v
t_param_type4_collision.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_param_type5.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_param_type5.v
t_param_type6.py Fix type operator for interface signals (#6050) (#6049) 2025-06-06 11:29:33 -04:00
t_param_type6.v Fix type operator for interface signals (#6050) (#6049) 2025-06-06 11:29:33 -04:00
t_param_type_bad.out Support `specparam` (#5767). 2025-06-28 08:23:43 -04:00
t_param_type_bad.py Change `--trace` to `--trace-vcd`. 2025-04-05 10:46:39 -04:00
t_param_type_bad.v
t_param_type_bad2.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_param_type_bad2.py Change `--trace` to `--trace-vcd`. 2025-04-05 10:46:39 -04:00
t_param_type_bad2.v
t_param_type_bad3.out Tests: Add t_param_type_bad3 2025-05-06 21:11:34 -04:00
t_param_type_bad3.py Tests: Add t_param_type_bad3 2025-05-06 21:11:34 -04:00
t_param_type_bad3.v Tests: Add t_param_type_bad3 2025-05-06 21:11:34 -04:00
t_param_type_bit.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_param_type_bit.v
t_param_type_cmp.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_param_type_cmp.v
t_param_type_collision.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_param_type_fwd.py Support parameter forward types. 2025-05-19 08:35:38 -04:00
t_param_type_fwd.v Support parameter forward types. 2025-05-19 08:35:38 -04:00
t_param_type_fwd_bad.out Support parameter forward types. 2025-05-19 08:35:38 -04:00
t_param_type_fwd_bad.py Support parameter forward types. 2025-05-19 08:35:38 -04:00
t_param_type_fwd_bad.v Support parameter forward types. 2025-05-19 08:35:38 -04:00
t_param_type_id_bad.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_param_type_id_bad.py Delay parameter type assignment determination until elaboration 2024-09-21 20:27:41 -04:00
t_param_type_id_bad.v Delay parameter type assignment determination until elaboration 2024-09-21 20:27:41 -04:00
t_param_typedef.py Tests: Disable running some lint tests on vltmt 2025-03-29 07:14:45 -04:00
t_param_typedef.v Fix unresolved typedefs as parameters (#5850). 2025-03-19 18:02:56 -04:00
t_param_unreachable.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_param_unreachable.v
t_param_up_bad.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_param_up_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_param_up_bad.v
t_param_value.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_param_value.v
t_param_while.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_param_while.v Tests: Remove unused clk input 2024-10-07 21:44:07 -04:00
t_param_wide_io.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_param_wide_io.v
t_param_width.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_param_width.v
t_param_width_loc_bad.out Tests: Remove unused clk input 2024-10-07 21:44:07 -04:00
t_param_width_loc_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_param_width_loc_bad.v Tests: Remove unused clk input 2024-10-07 21:44:07 -04:00
t_param_x_unique.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_param_x_unique.v
t_parse_delay.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_parse_delay.v
t_parse_delay_timing.py Tests: Cleanup as --binary implies --timing. No test functional change. 2025-03-29 15:50:07 -04:00
t_parse_sync_bad.out Tests: Split and rename t_parse_sync_bad 2025-05-05 18:35:50 -04:00
t_parse_sync_bad.py Tests: Split and rename t_parse_sync_bad 2025-05-05 18:35:50 -04:00
t_parse_sync_bad.v Tests: Split and rename t_parse_sync_bad 2025-05-05 18:35:50 -04:00
t_parse_sync_bad2.out Disable symbol from parser: Support redeclaring type as non-type; major parsing change (#2412). 2025-05-18 07:13:37 -04:00
t_parse_sync_bad2.py Tests: Split and rename t_parse_sync_bad 2025-05-05 18:35:50 -04:00
t_parse_sync_bad2.v Tests: Split and rename t_parse_sync_bad 2025-05-05 18:35:50 -04:00
t_past.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_past.v
t_past_bad.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_past_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_past_bad.v
t_past_funcs.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_past_funcs.v
t_past_strobe.out
t_past_strobe.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_past_strobe.v
t_past_unsup.out
t_past_unsup.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_past_unsup.v
t_pgo_profoutofdate_bad.out
t_pgo_profoutofdate_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_pgo_profoutofdate_bad.v
t_pgo_threads.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_pgo_threads_hier.py Fix PGO profiling for multi-threaded hierarchical scenarios (#5888) 2025-03-27 11:10:48 -04:00
t_pgo_threads_hier_nested.py Fix PGO profiling for multi-threaded hierarchical scenarios (#5888) 2025-03-27 11:10:48 -04:00
t_pgo_threads_hier_nested.vlt Fix PGO profiling for multi-threaded hierarchical scenarios (#5888) 2025-03-27 11:10:48 -04:00
t_pipe_exit_bad.py Tests: Move per-command expect= to instead check logfiles 2024-09-19 18:53:22 -04:00
t_pipe_exit_bad_pf.pf Tests: Misc test cleanups from Python branch. 2024-09-03 21:42:06 -04:00
t_pipe_filter.out
t_pipe_filter.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_pipe_filter.v
t_pipe_filter_inc.vh
t_pipe_filter_pf.pf Tests: Misc test cleanups from Python branch. 2024-09-03 21:42:06 -04:00
t_pli_bad.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_pli_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_pli_bad.v Add suggestions on misspelled PLI functions. 2024-07-20 07:20:10 -04:00
t_pli_bbox.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_pp_circ_subst_bad.out Support `specparam` (#5767). 2025-06-28 08:23:43 -04:00
t_pp_circ_subst_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_pp_circ_subst_bad.v
t_pp_circ_subst_bad2.out Support `specparam` (#5767). 2025-06-28 08:23:43 -04:00
t_pp_circ_subst_bad2.py Add `--preproc-token-limit` (#5768) 2025-02-07 10:32:12 -05:00
t_pp_circdef_bad.py Tests: Move per-command expect= to instead check logfiles 2024-09-19 18:53:22 -04:00
t_pp_circdef_bad.v
t_pp_defkwd_bad.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_pp_defkwd_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_pp_defkwd_bad.v
t_pp_defnettype_bad.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_pp_defnettype_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_pp_defnettype_bad.v
t_pp_defparen_bad.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_pp_defparen_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_pp_defparen_bad.v
t_pp_display.out
t_pp_display.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_pp_display.v
t_pp_dupdef.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_pp_dupdef.v
t_pp_dupdef_bad.out
t_pp_dupdef_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_pp_dupdef_pragma_bad.out
t_pp_dupdef_pragma_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_pp_dupdef_pragma_bad.v
t_pp_lib.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_pp_lib.v
t_pp_lib_inc.vh
t_pp_lib_library.v
t_pp_line.out Fix filename backslash escapes in C code (#5947). 2025-04-29 19:27:38 -04:00
t_pp_line.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_pp_line.v Fix filename backslash escapes in C code (#5947). 2025-04-29 19:27:38 -04:00
t_pp_line_bad.out Fix duplicate error first-lines, and some internal V3Error cleanups 2025-05-10 13:29:30 -04:00
t_pp_line_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_pp_line_bad.v
t_pp_misdef_bad.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_pp_misdef_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_pp_misdef_bad.v
t_pp_pragma_bad.out
t_pp_pragma_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_pp_pragma_bad.v
t_pp_pragmas.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_pp_pragmas.v
t_pp_recursedef_bad.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_pp_recursedef_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_pp_recursedef_bad.v
t_pp_resetall_bad.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_pp_resetall_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_pp_resetall_bad.v
t_pp_underline_bad.out Add BADVLTPRAGMA on unknown Verilator pragmas (#5945). 2025-04-29 18:18:54 -04:00
t_pp_underline_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_pp_underline_bad.v Add syntax error on empty case items, per IEEE grammar. 2024-09-25 22:40:28 -04:00
t_premit_rw.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_premit_rw.v
t_preproc.out Fix stringify in nested preprocessor macros (#5323) 2024-08-02 11:46:02 -04:00
t_preproc.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_preproc.v Fix stringify in nested preprocessor macros (#5323) 2024-08-02 11:46:02 -04:00
t_preproc_cmtend_bad.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_preproc_cmtend_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_preproc_cmtend_bad.v
t_preproc_comments.out Fix stringify in nested preprocessor macros (#5323) 2024-08-02 11:46:02 -04:00
t_preproc_comments.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_preproc_debugi.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_preproc_debugi.v
t_preproc_def09.out
t_preproc_def09.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_preproc_def09.v
t_preproc_defarg_bad.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_preproc_defarg_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_preproc_defarg_bad.v
t_preproc_defines.out Fix stringify in nested preprocessor macros (#5323) 2024-08-02 11:46:02 -04:00
t_preproc_defines.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_preproc_dos.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_preproc_elsif_bad.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_preproc_elsif_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_preproc_elsif_bad.v
t_preproc_eof1_bad.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_preproc_eof1_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_preproc_eof1_bad.v
t_preproc_eof2_bad.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_preproc_eof2_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_preproc_eof2_bad.v
t_preproc_eof3_bad.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_preproc_eof3_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_preproc_eof3_bad.v
t_preproc_eof4_bad.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_preproc_eof4_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_preproc_eof4_bad.v
t_preproc_eof5_bad.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_preproc_eof5_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_preproc_eof5_bad.v
t_preproc_eof6_bad.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_preproc_eof6_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_preproc_eof6_bad.v
t_preproc_ifdef.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_preproc_ifdef.v
t_preproc_ifdefend_bad.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_preproc_ifdefend_bad.py Standardize some error messages. 2025-03-23 19:51:54 -04:00
t_preproc_ifdefend_bad.v Standardize some error messages. 2025-03-23 19:51:54 -04:00
t_preproc_ifexpr.out
t_preproc_ifexpr.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_preproc_ifexpr.v
t_preproc_ifexpr_bad.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_preproc_ifexpr_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_preproc_ifexpr_bad.v
t_preproc_inc2.vh
t_preproc_inc3.vh
t_preproc_inc4.vh
t_preproc_inc_bad.out Disable symbol from parser: Support redeclaring type as non-type; major parsing change (#2412). 2025-05-18 07:13:37 -04:00
t_preproc_inc_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_preproc_inc_bad.v
t_preproc_inc_fn_bad.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_preproc_inc_fn_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_preproc_inc_fn_bad.v
t_preproc_inc_inc_bad.vh
t_preproc_inc_notfound_bad.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_preproc_inc_notfound_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_preproc_inc_notfound_bad.v
t_preproc_inc_recurse_bad.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_preproc_inc_recurse_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_preproc_inc_recurse_bad.v
t_preproc_kwd.py Tests: Fix some non-IEEE issues in tests. 2024-09-27 09:00:20 -04:00
t_preproc_kwd.v Tests: Remove unused clk input 2024-10-07 21:44:07 -04:00
t_preproc_kwd_bad.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_preproc_kwd_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_preproc_kwd_bad.v
t_preproc_nodef_bad.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_preproc_nodef_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_preproc_nodef_bad.v
t_preproc_noline.out
t_preproc_noline.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_preproc_noline.v
t_preproc_persist.out
t_preproc_persist.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_preproc_persist.v
t_preproc_persist2.v
t_preproc_persist_inc.v
t_preproc_preproczero_bad.out
t_preproc_preproczero_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_preproc_preproczero_bad.v
t_preproc_resolve.out Add used language to `--preproc-resolve` output (#5795) 2025-02-25 07:03:25 -05:00
t_preproc_resolve.py Add used language to `--preproc-resolve` output (#5795) 2025-02-25 07:03:25 -05:00
t_preproc_resolve.v Add `--preproc-resolve` for modules in preprocessor output (#5789) 2025-02-22 04:47:54 +10:00
t_preproc_resolve_config.vlt Add used language to `--preproc-resolve` output (#5795) 2025-02-25 07:03:25 -05:00
t_preproc_str_undef.out
t_preproc_str_undef.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_preproc_str_undef.v
t_preproc_strify_join.out Fix ignoring joins in stringify in preprocessor (#5777) 2025-02-13 18:33:12 -05:00
t_preproc_strify_join.py Fix ignoring joins in stringify in preprocessor (#5777) 2025-02-13 18:33:12 -05:00
t_preproc_strify_join.v Fix ignoring joins in stringify in preprocessor (#5777) 2025-02-13 18:33:12 -05:00
t_preproc_stringend_bad.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_preproc_stringend_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_preproc_stringend_bad.v
t_preproc_ttempty.out
t_preproc_ttempty.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_preproc_ttempty.v
t_preproc_undefineall.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_preproc_undefineall.v
t_priority_case.out
t_priority_case.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_priority_case.v
t_probdist.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_probdist.v
t_probdist_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_probdist_bad.v
t_probdist_cmake.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_process.out
t_process.py Tests: Cleanup as --binary implies --timing. No test functional change. 2025-03-29 15:50:07 -04:00
t_process.v Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_process_bad.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_process_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_process_bad.v
t_process_compare.py Fix process comparisons (#5896). 2025-03-28 22:40:21 -04:00
t_process_compare.v Fix process comparisons (#5896). 2025-03-28 22:40:21 -04:00
t_process_copy_constr.py Fix copy constructor of classes that use std::process (#5528) 2024-10-10 14:40:07 +02:00
t_process_copy_constr.v Fix copy constructor of classes that use std::process (#5528) 2024-10-10 14:40:07 +02:00
t_process_finished.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_process_finished.v
t_process_fork.out
t_process_fork.py Tests: Cleanup as --binary implies --timing. No test functional change. 2025-03-29 15:50:07 -04:00
t_process_fork.v
t_process_kill.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_process_kill.v
t_process_notiming.out Fix checking built-in method arguments (#5839) 2025-03-08 14:11:12 -05:00
t_process_notiming.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_process_parse.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_process_propagation.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_process_propagation.v
t_process_rand.py Tests: Cleanup as --binary implies --timing. No test functional change. 2025-03-29 15:50:07 -04:00
t_process_rand.v
t_process_redecl.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_process_redecl.v
t_process_std.out
t_process_std.py Tests: Cleanup as --binary implies --timing. No test functional change. 2025-03-29 15:50:07 -04:00
t_process_task.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_process_task.v
t_prof.py Tests: Fix ubuntu24.04-arm issues 2025-03-22 16:55:53 -04:00
t_prof.v
t_prof_timing.py Tests: Fix ubuntu24.04-arm issues 2025-03-22 16:55:53 -04:00
t_profc.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_profcfunc.gprof
t_profcfunc.out
t_profcfunc.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_program.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_program.v
t_program_anonymous.out
t_program_anonymous.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_program_anonymous.v
t_program_extern.out Tests: Improve warning coverage 2025-05-16 22:32:25 -04:00
t_program_extern.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_program_extern.v Tests: Improve warning coverage 2025-05-16 22:32:25 -04:00
t_property.py Tests: Rename property tests 2025-05-11 08:24:11 -04:00
t_property.v Tests: Rename property tests 2025-05-11 08:24:11 -04:00
t_property_fail_1.py Tests: Rename property tests 2025-05-11 08:24:11 -04:00
t_property_fail_2_bad.py Tests: Rename property tests 2025-05-11 08:24:11 -04:00
t_property_named.py Tests: Rename property tests 2025-05-11 08:24:11 -04:00
t_property_named.v Tests: Rename property tests 2025-05-11 08:24:11 -04:00
t_property_negated.py Tests: Rename property tests 2025-05-11 08:24:11 -04:00
t_property_negated.v Tests: Rename property tests 2025-05-11 08:24:11 -04:00
t_property_pexpr_unsup.out Tests: Rename property tests 2025-05-11 08:24:11 -04:00
t_property_pexpr_unsup.py Tests: Rename property tests 2025-05-11 08:24:11 -04:00
t_property_pexpr_unsup.v Tests: Rename property tests 2025-05-11 08:24:11 -04:00
t_property_recursive_unsup.out Tests: Rename property tests 2025-05-11 08:24:11 -04:00
t_property_recursive_unsup.py Tests: Rename property tests 2025-05-11 08:24:11 -04:00
t_property_recursive_unsup.v Tests: Rename property tests 2025-05-11 08:24:11 -04:00
t_property_untyped.py Tests: Rename property tests 2025-05-11 08:24:11 -04:00
t_property_untyped.v Tests: Rename property tests 2025-05-11 08:24:11 -04:00
t_property_untyped_unsup.out Tests: Rename property tests 2025-05-11 08:24:11 -04:00
t_property_untyped_unsup.py Tests: Rename property tests 2025-05-11 08:24:11 -04:00
t_property_untyped_unsup.v Tests: Rename property tests 2025-05-11 08:24:11 -04:00
t_property_var_unsup.out Remove symbol table from parser: Support redeclaring type as non-type; major parsing change (#2412). 2025-05-18 07:13:37 -04:00
t_property_var_unsup.py Tests: Rename property tests 2025-05-11 08:24:11 -04:00
t_property_var_unsup.v Tests: Rename property tests 2025-05-11 08:24:11 -04:00
t_protect_ids.py Change `--trace` to `--trace-vcd`. 2025-04-05 10:46:39 -04:00
t_protect_ids.v
t_protect_ids_bad.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_protect_ids_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_protect_ids_bad.v
t_protect_ids_c.cpp
t_protect_ids_debug.py Change `--trace` to `--trace-vcd`. 2025-04-05 10:46:39 -04:00
t_protect_ids_key.out
t_protect_ids_key.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_public_clk.cpp
t_public_clk.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_public_clk.v
t_public_seq.cpp
t_public_seq.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_public_seq.v
t_public_unpacked_port.py Tests: Rename property tests 2025-05-11 08:24:11 -04:00
t_public_unpacked_port.v Tests: Rename property tests 2025-05-11 08:24:11 -04:00
t_queue.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_queue.v Tests: Only != is globally allowed to compare strings 2025-04-03 21:26:53 -04:00
t_queue_arg.py Fix checking built-in method arguments (#5839) 2025-03-08 14:11:12 -05:00
t_queue_arg.v Fix checking built-in method arguments (#5839) 2025-03-08 14:11:12 -05:00
t_queue_assignment.py Support queue's assignment `push_back/push_front('{})` (#5585) (#5586) 2024-11-06 17:31:48 -05:00
t_queue_assignment.v Support queue's assignment `push_back/push_front('{})` (#5585) (#5586) 2024-11-06 17:31:48 -05:00
t_queue_back.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_queue_back.v Support appending to queue via `[]` (#5421) 2024-09-02 09:45:47 -04:00
t_queue_bounded.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_queue_bounded.v Support appending to queue via `[]` (#5421) 2024-09-02 09:45:47 -04:00
t_queue_class.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_queue_class.v Support appending to queue via `[]` (#5421) 2024-09-02 09:45:47 -04:00
t_queue_compare.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_queue_compare.v Add aggregate type error checks (#5570) (#5950) 2025-05-20 09:10:22 -04:00
t_queue_concat_assign.py Fix assignments of concatenation to queues and dynamic arrays (#5540) 2024-10-15 07:35:59 -04:00
t_queue_concat_assign.v Fix assignments of concatenation to queues and dynamic arrays (#5540) 2024-10-15 07:35:59 -04:00
t_queue_empty_bad.out
t_queue_empty_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_queue_empty_bad.v
t_queue_empty_pin.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_queue_empty_pin.v
t_queue_init.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_queue_init.v
t_queue_insert_at_end.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_queue_insert_at_end.v
t_queue_method.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_queue_method.v Tests: Only != is globally allowed to compare strings 2025-04-03 21:26:53 -04:00
t_queue_method2_bad.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_queue_method2_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_queue_method2_bad.v
t_queue_method3_bad.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_queue_method3_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_queue_method3_bad.v
t_queue_method_bad.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_queue_method_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_queue_method_bad.v
t_queue_output_func.py Fix queue element access (#5551) 2024-10-24 09:40:54 -04:00
t_queue_output_func.v Fix queue element access (#5551) 2024-10-24 09:40:54 -04:00
t_queue_persistence.v Fix inline function ref port persistence 2024-07-23 18:47:04 -04:00
t_queue_persistence_inl.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_queue_persistence_noinl.py Tests: Cleanup as --binary implies --timing. No test functional change. 2025-03-29 15:50:07 -04:00
t_queue_pushpop.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_queue_pushpop.v Tests: Fix string !== for other simulators. 2024-10-03 18:14:53 -04:00
t_queue_slice.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_queue_slice.v Tests: Only != is globally allowed to compare strings 2025-04-03 21:26:53 -04:00
t_queue_struct.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_queue_struct.v Support appending to queue via `[]` (#5421) 2024-09-02 09:45:47 -04:00
t_queue_unknown_sel.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_queue_unknown_sel.v Add lint error on importing package within a class (#5634) (#5679) 2025-01-07 16:52:44 -05:00
t_queue_unpacked.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_queue_unpacked.v Tests: Fix string !== for other simulators. 2024-10-03 18:14:53 -04:00
t_queue_var_slice.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_queue_var_slice.v
t_queue_void_ops.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_queue_void_ops.v
t_randc.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_randc.v
t_randc_oversize_bad.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_randc_oversize_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_randc_oversize_bad.v
t_randcase.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_randcase.v
t_randcase_bad.out
t_randcase_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_randcase_bad.v
t_randomize.out Support basic dist constraints (#5431) 2024-09-12 05:20:36 -07:00
t_randomize.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_randomize.v Support foreach constraints (#5302) 2024-08-02 10:03:55 -04:00
t_randomize_array.py Support packed/unpacked and dynamic array unconstrained randomization (#5414) (#5415) 2024-09-19 20:07:05 -04:00
t_randomize_array.v Fix `rand` dynamic arrays with null handles (#5594) 2024-11-08 06:53:43 -05:00
t_randomize_bbox.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_randomize_inline_var_ctl.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_randomize_inline_var_ctl.v Support inline random variable control (#5317) 2024-08-13 14:20:31 -04:00
t_randomize_inline_var_ctl_bad.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_randomize_inline_var_ctl_bad.py Tests: Disable running some lint tests on vltmt 2025-03-29 07:14:45 -04:00
t_randomize_inline_var_ctl_bad.v Support inline random variable control (#5317) 2024-08-13 14:20:31 -04:00
t_randomize_inline_var_ctl_unsup_1.out Support inline random variable control (#5317) 2024-08-13 14:20:31 -04:00
t_randomize_inline_var_ctl_unsup_1.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_randomize_inline_var_ctl_unsup_1.v Support inline random variable control (#5317) 2024-08-13 14:20:31 -04:00
t_randomize_inline_var_ctl_unsup_2.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_randomize_inline_var_ctl_unsup_2.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_randomize_inline_var_ctl_unsup_2.v Support inline random variable control (#5317) 2024-08-13 14:20:31 -04:00
t_randomize_method.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_randomize_method.v Tests: Don't use indices in check_rand (#5561) 2024-10-25 11:06:32 -04:00
t_randomize_method_bad.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_randomize_method_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_randomize_method_bad.v
t_randomize_method_complex_bad.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_randomize_method_complex_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_randomize_method_complex_bad.v Support parsing and otherwise ignoring inline constraints (#5126) 2024-06-13 08:38:20 -04:00
t_randomize_method_constraints.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_randomize_method_constraints.v
t_randomize_method_nclass_bad.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_randomize_method_nclass_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_randomize_method_nclass_bad.v
t_randomize_method_std.py Fix randomize treated as std::randomize in classes (#5436) 2024-09-10 09:10:36 -04:00
t_randomize_method_std.v Fix randomize treated as std::randomize in classes (#5436) 2024-09-10 09:10:36 -04:00
t_randomize_method_types_unsup.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_randomize_method_types_unsup.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_randomize_method_types_unsup.v Add warning on global constraints (#5625) 2024-11-22 08:47:14 -05:00
t_randomize_method_with.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_randomize_method_with.v Tests: Don't use indices in check_rand (#5561) 2024-10-25 11:06:32 -04:00
t_randomize_method_with_bad.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_randomize_method_with_bad.py Tests: Disable running some lint tests on vltmt 2025-03-29 07:14:45 -04:00
t_randomize_method_with_bad.v Support inline constraints for class randomization methods (#5234) 2024-07-12 16:18:18 +02:00
t_randomize_method_with_scoping.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_randomize_method_with_scoping.v Fix randomize with foreach constraints (#5492) 2024-09-26 19:31:06 +02:00
t_randomize_param_with.py Fix `randomize..with` of parameterized classes (#5676) 2024-12-13 09:32:47 -05:00
t_randomize_param_with.v Fix `randomize..with` of parameterized classes (#5676) 2024-12-13 09:32:47 -05:00
t_randomize_prepost.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_randomize_prepost.v Fix `pre_randomize`/`post_randomize` when no randomize (#6122). 2025-06-26 18:34:20 -04:00
t_randomize_prepost_alone.py Fix `pre_randomize`/`post_randomize` when no randomize (#6122). 2025-06-26 18:34:20 -04:00
t_randomize_prepost_alone.v Fix `pre_randomize`/`post_randomize` when no randomize (#6122). 2025-06-26 18:34:20 -04:00
t_randomize_queue_constraints.py Support basic constrained queue randomization (#5413) 2024-09-10 09:33:14 -04:00
t_randomize_queue_constraints.v Tests: Don't use indices in check_rand (#5561) 2024-10-25 11:06:32 -04:00
t_randomize_queue_size.py Support randomize size constraints with restrictions (#5582 partial) (#5611) 2024-11-15 10:45:06 -05:00
t_randomize_queue_size.v Support randomize size constraints with restrictions (#5582 partial) (#5611) 2024-11-15 10:45:06 -05:00
t_randomize_rand_mode.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_randomize_rand_mode.v Support `rand_mode` (#5273) 2024-07-31 22:30:48 +01:00
t_randomize_rand_mode_bad.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_randomize_rand_mode_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_randomize_rand_mode_bad.v Support `rand_mode` (#5273) 2024-07-31 22:30:48 +01:00
t_randomize_rand_mode_constr.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_randomize_rand_mode_constr.v Fix `rand_mode` method with cast (#5831). 2025-03-05 21:43:50 -05:00
t_randomize_rand_mode_unsup.out Add more `rand_mode` unsupported errors (#5329) 2024-08-05 17:56:03 -04:00
t_randomize_rand_mode_unsup.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_randomize_rand_mode_unsup.v Add more `rand_mode` unsupported errors (#5329) 2024-08-05 17:56:03 -04:00
t_randomize_srandom.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_randomize_srandom.v
t_randomize_this.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_randomize_this.v Fix randomizing current object with `rand` class instance member (#5292) 2024-07-22 14:41:12 +02:00
t_randomize_union.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_randomize_union.v Support unconstrained randomization for unions (#5395) (#5396) 2024-08-26 11:04:45 -04:00
t_randomize_union_bad.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_randomize_union_bad.py Tests: Disable running some lint tests on vltmt 2025-03-29 07:14:45 -04:00
t_randomize_union_bad.v Support unconstrained randomization for unions (#5395) (#5396) 2024-08-26 11:04:45 -04:00
t_randsequence.out Tests: Improve warning coverage 2025-05-16 22:32:25 -04:00
t_randsequence.py Tests: Improve warning coverage 2025-05-16 22:32:25 -04:00
t_randsequence.v
t_randsequence_bad.out
t_randsequence_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_randsequence_bad.v
t_randstate_func.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_randstate_func.v
t_randstate_obj.out
t_randstate_obj.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_randstate_obj.v
t_randstate_seed_bad.out
t_randstate_seed_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_randstate_seed_bad.v
t_real_cast.py Fix casting reals to large integrals (#6085) 2025-06-12 11:53:10 -04:00
t_real_cast.v Fix casting reals to large integrals (#6085) 2025-06-12 11:53:10 -04:00
t_real_param.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_real_param.v
t_recursive_method.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_recursive_method.v
t_recursive_module_bug.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_recursive_module_bug.v
t_recursive_module_bug_2.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_recursive_module_bug_2.v
t_reloop_cam.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_reloop_cam.v
t_reloop_local.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_reloop_local.v
t_reloop_offset.out
t_reloop_offset.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_reloop_offset.v
t_reloop_offset_lim_63.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_repeat.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_repeat.v
t_rnd.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_rnd.v
t_runflag.py Tests: Move per-command expect= to instead check logfiles 2024-09-19 18:53:22 -04:00
t_runflag.v
t_runflag_bad.py Tests: Cleanup some .out filenames. No test coverage change. 2025-04-05 13:46:22 -04:00
t_runflag_bad.v
t_runflag_bad__a.out Tests: Cleanup some .out filenames. No test coverage change. 2025-04-05 13:46:22 -04:00
t_runflag_bad__b.out Tests: Cleanup some .out filenames. No test coverage change. 2025-04-05 13:46:22 -04:00
t_runflag_bad__c.out Tests: Cleanup some .out filenames. No test coverage change. 2025-04-05 13:46:22 -04:00
t_runflag_bad__d.out Tests: Cleanup some .out filenames. No test coverage change. 2025-04-05 13:46:22 -04:00
t_runflag_bad__e.out Tests: Cleanup some .out filenames. No test coverage change. 2025-04-05 13:46:22 -04:00
t_runflag_errorlimit_bad.out
t_runflag_errorlimit_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_runflag_errorlimit_bad.v
t_runflag_errorlimit_fatal_bad.out Fix `$fatal` to not be affected by `+verilator+error+limit` (#5135). 2024-09-13 20:45:44 -04:00
t_runflag_errorlimit_fatal_bad.py Fix `$fatal` to not be affected by `+verilator+error+limit` (#5135). 2024-09-13 20:45:44 -04:00
t_runflag_errorlimit_fatal_bad.v Fix `$fatal` to not be affected by `+verilator+error+limit` (#5135). 2024-09-13 20:45:44 -04:00
t_runflag_quiet.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_runflag_quiet.v
t_runflag_seed.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_runflag_seed.v
t_runflag_uninit_bad.cpp
t_runflag_uninit_bad.out
t_runflag_uninit_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_runflag_uninit_bad.v
t_sampled_expr.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_sampled_expr.v
t_sampled_expr_unsup.out
t_sampled_expr_unsup.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_sampled_expr_unsup.v
t_sarif.out Support SARIF JSON diagnostic output with `--diagnostics-sarif`. (#6017) 2025-05-17 15:46:15 -04:00
t_sarif.py Support SARIF JSON diagnostic output with `--diagnostics-sarif`. (#6017) 2025-05-17 15:46:15 -04:00
t_sarif.sarif.out Support SARIF JSON diagnostic output with `--diagnostics-sarif`. (#6017) 2025-05-17 15:46:15 -04:00
t_sarif.v Support SARIF JSON diagnostic output with `--diagnostics-sarif`. (#6017) 2025-05-17 15:46:15 -04:00
t_sarif_output.py Support SARIF JSON diagnostic output with `--diagnostics-sarif`. (#6017) 2025-05-17 15:46:15 -04:00
t_savable.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_savable.v
t_savable_class_bad.out
t_savable_class_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_savable_class_bad.v
t_savable_coverage_bad.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_savable_coverage_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_savable_coverage_bad.v
t_savable_format1_bad.out
t_savable_format1_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_savable_format2_bad.out
t_savable_format2_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_savable_format3_bad.out
t_savable_format3_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_savable_open_bad.out
t_savable_open_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_savable_open_bad2.cpp
t_savable_open_bad2.out
t_savable_open_bad2.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_savable_open_bad2.v
t_savable_timing_bad.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_savable_timing_bad.py Add error on `--savable --timing` (#5690). 2024-12-19 17:30:40 -05:00
t_sc_names.cpp Commentary 2025-01-24 07:47:32 -05:00
t_sc_names.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_sc_names.v
t_sc_vl_assign_sbw.cpp Internals: Remove single-statement braces. No functional change. 2025-03-19 22:55:11 -04:00
t_sc_vl_assign_sbw.py Tests: Rename some tests 2024-11-10 20:00:16 -05:00
t_sc_vl_assign_sbw.v Tests: Rename some tests 2024-11-10 20:00:16 -05:00
t_scheduling_0.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_scheduling_0.v
t_scheduling_1.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_scheduling_1.v
t_scheduling_2.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_scheduling_2.v
t_scheduling_3.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_scheduling_3.v
t_scheduling_4.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_scheduling_4.v
t_scheduling_5.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_scheduling_5.v
t_scheduling_6.v
t_scheduling_initial_event.py Tests: Cleanup as --binary implies --timing. No test functional change. 2025-03-29 15:50:07 -04:00
t_scheduling_initial_event.v Fix change detection at time 0 (#5864) 2025-03-18 13:34:04 +00:00
t_scheduling_many_clocks.py Set trigger vector in whole words (#5857) 2025-03-14 14:06:51 +00:00
t_scheduling_many_clocks.v Set trigger vector in whole words (#5857) 2025-03-14 14:06:51 +00:00
t_scope_map.cpp Support multidimensional array access via VPI (#2812) (#5573) 2025-01-09 19:04:26 -05:00
t_scope_map.py Change `--trace` to `--trace-vcd`. 2025-04-05 10:46:39 -04:00
t_scope_map.v
t_scoped_param_pattern_init_unsup.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_scoped_param_pattern_init_unsup.py Tests: Demonstrate unsupported scoped pattern array init (#5652) 2024-12-02 18:33:34 -05:00
t_scoped_param_pattern_init_unsup.v Tests: Demonstrate unsupported scoped pattern array init (#5652) 2024-12-02 18:33:34 -05:00
t_select_2d.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_select_2d.v
t_select_ascending.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_select_ascending.v
t_select_bad_msb.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_select_bad_msb.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_select_bad_msb.v
t_select_bad_range.out
t_select_bad_range.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_select_bad_range.v
t_select_bad_range2.out
t_select_bad_range2.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_select_bad_range2.v
t_select_bad_range3.out
t_select_bad_range3.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_select_bad_range3.v
t_select_bad_range4.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_select_bad_range4.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_select_bad_range4.v
t_select_bad_range5.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_select_bad_range5.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_select_bad_range5.v
t_select_bad_range6.out Extend out-of-range select (#5159) (#5164) 2024-06-09 17:05:14 -04:00
t_select_bad_range6.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_select_bad_range6.v Extend out-of-range select (#5159) (#5164) 2024-06-09 17:05:14 -04:00
t_select_bad_tri.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_select_bad_tri.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_select_bad_tri.v
t_select_bad_width0.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_select_bad_width0.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_select_bad_width0.v
t_select_bound1.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_select_bound1.v Fix V3Table trying to generate 'x' bits in the lookup table. (#5491) 2024-09-26 16:31:47 +01:00
t_select_bound2.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_select_bound2.v
t_select_bound3.py Fix array bounds checking with class member selects (#5996) (#5997). 2025-06-07 17:20:48 -04:00
t_select_bound3.v Fix array bounds checking with class member selects (#5996) (#5997). 2025-06-07 17:20:48 -04:00
t_select_c.py Fix constant propagation making upper bits Xs (#5969). 2025-04-30 08:22:05 -04:00
t_select_c.v Fix constant propagation making upper bits Xs (#5969). 2025-04-30 08:22:05 -04:00
t_select_crazy.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_select_crazy.v
t_select_index.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_select_index.v
t_select_index2.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_select_index2.v Tests: Remove unused clk input 2024-10-07 21:44:07 -04:00
t_select_lhs_oob.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_select_lhs_oob.v
t_select_lhs_oob2.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_select_lhs_oob2.v
t_select_little.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_select_little.v
t_select_little_pack.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_select_little_pack.v Tests: Remove unused clk input 2024-10-07 21:44:07 -04:00
t_select_loop.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_select_loop.v
t_select_mul_extend.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_select_mul_extend.v Tests: Untabify some tests. 2024-09-01 21:12:37 -04:00
t_select_negative.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_select_negative.v
t_select_out_of_range.py Tests: Rename some tests into proper groups. No functional change. 2024-09-21 10:04:58 -04:00
t_select_out_of_range.v Tests: Rename some tests into proper groups. No functional change. 2024-09-21 10:04:58 -04:00
t_select_param.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_select_param.v
t_select_plus.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_select_plus.v
t_select_plus_mul_pow2.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_select_plus_mul_pow2.v
t_select_plusloop.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_select_plusloop.v
t_select_runtime_range.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_select_runtime_range.v
t_select_set.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_select_set.v
t_select_width.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_select_width.v Fix select value too wide (#5148) (#5153). 2024-06-07 08:27:03 -04:00
t_selextract_in_paramextends.py Tests: Cleanup as --binary implies --timing. No test functional change. 2025-03-29 15:50:07 -04:00
t_selextract_in_paramextends.v
t_semaphore.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_semaphore.v
t_semaphore_always.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_semaphore_always.v
t_semaphore_bad.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_semaphore_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_semaphore_bad.v
t_semaphore_class.py Tests: Cleanup as --binary implies --timing. No test functional change. 2025-03-29 15:50:07 -04:00
t_semaphore_class.v
t_semaphore_class_nested.py Tests: Cleanup as --binary implies --timing. No test functional change. 2025-03-29 15:50:07 -04:00
t_semaphore_class_nested.v Support nested classes (#4178) (#5778) 2025-02-17 23:47:41 +11:00
t_semaphore_concurrent.out Fix concurrency for mailbox and semaphores (#5222) 2024-07-03 22:29:32 +01:00
t_semaphore_concurrent.py Tests: Cleanup as --binary implies --timing. No test functional change. 2025-03-29 15:50:07 -04:00
t_semaphore_concurrent.v Fix concurrency for mailbox and semaphores (#5222) 2024-07-03 22:29:32 +01:00
t_semaphore_std.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_sequence_sexpr_unsup.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_sequence_sexpr_unsup.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_sequence_sexpr_unsup.v
t_setuphold.py Support `$setuphold` (#5884) 2025-04-02 06:08:51 -04:00
t_setuphold.v Support `$setuphold` (#5884) 2025-04-02 06:08:51 -04:00
t_simulate_array.py Fix V3Simulate constant reuse (#5709) 2025-01-03 05:33:29 -05:00
t_simulate_array.v Fix V3Simulate constant reuse (#5709) 2025-01-03 05:33:29 -05:00
t_slice_cmp.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_slice_cmp.v
t_slice_cond.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_slice_cond.v
t_slice_cond_2d_side_effect.py Fix slicing of AstExprStmt nodes (#6005) 2025-05-14 11:55:02 -04:00
t_slice_cond_2d_side_effect.v Fix slicing of AstExprStmt nodes (#6005) 2025-05-14 11:55:02 -04:00
t_slice_cond_side_effect.py Fix slicing of AstExprStmt nodes (#6005) 2025-05-14 11:55:02 -04:00
t_slice_cond_side_effect.v Fix slicing of AstExprStmt nodes (#6005) 2025-05-14 11:55:02 -04:00
t_slice_init.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_slice_init.v
t_slice_struct_array_modport.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_slice_struct_array_modport.v
t_specparam.py Support `specparam` (#5767). 2025-06-28 08:23:43 -04:00
t_specparam.v Support `specparam` (#5767). 2025-06-28 08:23:43 -04:00
t_split_var_0.py Automatically split some packed variables (#5843) 2025-03-09 10:31:01 -04:00
t_split_var_0.v Fix splitting of packed ports with non-zero based ranges (#5842) 2025-03-08 09:37:30 -05:00
t_split_var_0.vlt
t_split_var_1_bad.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_split_var_1_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_split_var_1_bad.v Add error on instances without parenthesis. 2024-09-22 12:25:35 -04:00
t_split_var_2_trace.out Optimize duplicate timestamps out of traces (#4686) 2025-04-05 14:19:58 -04:00
t_split_var_2_trace.py Change `--trace` to `--trace-vcd`. 2025-04-05 10:46:39 -04:00
t_split_var_3_wreal.py Automatically split some packed variables (#5843) 2025-03-09 10:31:01 -04:00
t_split_var_3_wreal.v
t_split_var_4.py Automatically split some packed variables (#5843) 2025-03-09 10:31:01 -04:00
t_split_var_4.v
t_split_var_5.py Automatically split some packed variables (#5843) 2025-03-09 10:31:01 -04:00
t_split_var_auto.py Automatically split some packed variables (#5843) 2025-03-09 10:31:01 -04:00
t_split_var_auto.v Automatically split some packed variables (#5843) 2025-03-09 10:31:01 -04:00
t_split_var_types.py Change `--trace` to `--trace-vcd`. 2025-04-05 10:46:39 -04:00
t_split_var_types.v Fix Inconsistent assignment error by split-var (#5984) (#5988) 2025-05-06 05:00:17 -04:00
t_srandom_class_dep.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_srandom_class_dep.v
t_stack_check.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_stack_check.v
t_stack_check_fail.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_stacktrace.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_stacktrace.v
t_static_dup_name.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_static_dup_name.v
t_static_elab.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_static_elab.v
t_static_function_in_class.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_static_function_in_class.v Tests: Untabify some tests. 2024-09-01 21:12:37 -04:00
t_static_function_in_class_call_without_parentheses.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_static_function_in_class_call_without_parentheses.v
t_static_in_loop_unsup.out
t_static_in_loop_unsup.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_static_in_loop_unsup.v
t_std_identifier.py Fix type_id package scope resolution (#5826) 2025-03-06 17:41:27 -05:00
t_std_identifier.v Tests: Avoid multiple lint/compile runs in one test; hard to debug 2024-09-20 20:34:35 -04:00
t_std_identifier_bad.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_std_identifier_bad.py Tests: Avoid multiple lint/compile runs in one test; hard to debug 2024-09-20 20:34:35 -04:00
t_std_pkg_bad.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_std_pkg_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_std_pkg_bad.v
t_std_process_self.py Tests: Avoid multiple lint/compile runs in one test; hard to debug 2024-09-20 20:34:35 -04:00
t_std_process_self.v
t_std_process_self_std.py Tests: Avoid multiple lint/compile runs in one test; hard to debug 2024-09-20 20:34:35 -04:00
t_std_randomize_unsup_bad.out Add parsing but otherwise ignore std::randomize (#5354) 2024-08-09 17:21:32 -04:00
t_std_randomize_unsup_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_std_randomize_unsup_bad.v Add parsing but otherwise ignore std::randomize (#5354) 2024-08-09 17:21:32 -04:00
t_std_waiver.py Add `--no-std-waiver` and default reading of standard lint waivers file (#5607). 2024-11-12 22:11:19 -05:00
t_std_waiver.v Add `--no-std-waiver` and default reading of standard lint waivers file (#5607). 2024-11-12 22:11:19 -05:00
t_std_waiver_no.py Add `--no-std-waiver` and default reading of standard lint waivers file (#5607). 2024-11-12 22:11:19 -05:00
t_std_waiver_no.v Add `--no-std-waiver` and default reading of standard lint waivers file (#5607). 2024-11-12 22:11:19 -05:00
t_stmt_incr_unsup.out Support side effects of form `variable[index_function()]++`. 2025-01-08 19:37:20 -05:00
t_stmt_incr_unsup.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_stmt_incr_unsup.v Support side effects of form `variable[index_function()]++`. 2025-01-08 19:37:20 -05:00
t_stop_bad.out
t_stop_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_stop_bad.v
t_stop_winos_bad.out Fix filename backslash escapes in C code (#5947). 2025-04-29 19:27:38 -04:00
t_stop_winos_bad.py Fix filename backslash escapes in C code (#5947). 2025-04-29 19:27:38 -04:00
t_stop_winos_bad.v Fix filename backslash escapes in C code (#5947). 2025-04-29 19:27:38 -04:00
t_stream.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_stream.v Tests: Fix some non-IEEE issues in tests. 2024-09-27 09:00:20 -04:00
t_stream2.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_stream2.v
t_stream3.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_stream3.v
t_stream4.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_stream4.v
t_stream5.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_stream5.v Fix streaming to/from packed arrays (#5976) 2025-05-04 19:28:51 +01:00
t_stream_bad.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_stream_bad.py Tests: Disable running some lint tests on vltmt 2025-03-29 07:14:45 -04:00
t_stream_bad.v
t_stream_dynamic.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_stream_dynamic.v Fix streaming operator packing order (#5903) (#6077) 2025-06-10 17:23:16 -04:00
t_stream_integer_type.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_stream_integer_type.v Tests: Remove unused clk input 2024-10-07 21:44:07 -04:00
t_stream_string_array.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_stream_string_array.v
t_stream_struct.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_stream_struct.v
t_stream_trace.out Fix stream expressions (#5938) 2025-04-15 11:50:43 -04:00
t_stream_trace.py Fix stream expressions (#5938) 2025-04-15 11:50:43 -04:00
t_stream_trace.v Fix stream expressions (#5938) 2025-04-15 11:50:43 -04:00
t_stream_unpack.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_stream_unpack.v Fix streaming operator packing order (#5903) (#6077) 2025-06-10 17:23:16 -04:00
t_stream_unpack_lhs.out Add aggregate type error checks (#5570) (#5950) 2025-05-20 09:10:22 -04:00
t_stream_unpack_lhs.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_stream_unpack_lhs.v
t_stream_unpack_narrower.out Fix assignments with stream expressions and unpacked arrays (#5915) 2025-04-09 06:37:52 -04:00
t_stream_unpack_narrower.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_stream_unpack_narrower.v Fix assignments with stream expressions and unpacked arrays (#5915) 2025-04-09 06:37:52 -04:00
t_stream_unpack_wider.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_stream_unpack_wider.v Tests: Fix string !== for other simulators. 2024-10-03 18:14:53 -04:00
t_strength_2_uneq_assign.out
t_strength_2_uneq_assign.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_strength_2_uneq_assign.v
t_strength_assignments_constants.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_strength_assignments_constants.v
t_strength_bufif1.out
t_strength_bufif1.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_strength_bufif1.v
t_strength_equal_strength.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_strength_equal_strength.v
t_strength_highz.out
t_strength_highz.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_strength_highz.v
t_strength_strong1_strong1_bad.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_strength_strong1_strong1_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_strength_strong1_strong1_bad.v
t_strength_strongest_constant.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_strength_strongest_constant.v
t_strength_strongest_non_tristate.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_strength_strongest_non_tristate.v
t_string.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_string.v
t_string_byte.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_string_byte.v
t_string_dyn_num.out
t_string_dyn_num.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_string_dyn_num.v
t_string_octal.py Fix decoding octal string escapes with 1-2 digits (#6108). 2025-06-23 18:37:44 -04:00
t_string_octal.v Fix decoding octal string escapes with 1-2 digits (#6108). 2025-06-23 18:37:44 -04:00
t_string_repl.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_string_repl.v Fix non-constant replication in concats (#5171) 2024-06-10 11:21:43 -04:00
t_string_sel.py Support selects on arbitrary string expressions (#5773) 2025-02-11 12:06:34 -05:00
t_string_sel.v Support selects on arbitrary string expressions (#5773) 2025-02-11 12:06:34 -05:00
t_string_size.out
t_string_size.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_string_size.v
t_string_to_bit.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_string_to_bit.v
t_string_type_methods.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_string_type_methods.v Tests: Fix string !== for other simulators. 2024-10-03 18:14:53 -04:00
t_string_type_methods_bad.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_string_type_methods_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_string_type_methods_bad.v
t_struct_anon.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_struct_anon.v
t_struct_array.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_struct_array.v
t_struct_array_assignment.py Fix struct array assignment (#5455) (#5537) 2024-10-21 09:54:33 -04:00
t_struct_array_assignment.v Fix struct array assignment (#5455) (#5537) 2024-10-21 09:54:33 -04:00
t_struct_array_assignment_delayed.py Apply 'make format' 2024-11-24 03:02:04 +00:00
t_struct_array_assignment_delayed.v Fix array of struct member overwrites on member update (#5605) (#5618) (#5628) 2024-11-23 22:01:02 -05:00
t_struct_assign.out
t_struct_assign.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_struct_assign.v
t_struct_clk.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_struct_clk.v
t_struct_cons_cast.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_struct_cons_cast.v
t_struct_contents.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_struct_contents.v
t_struct_contents_bad.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_struct_contents_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_struct_contents_bad.v Tests: Use illegal struct 2024-11-09 08:34:17 -05:00
t_struct_genfor.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_struct_genfor.v
t_struct_init.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_struct_init.v Tests: Fix some non-IEEE issues in tests. 2024-09-27 09:00:20 -04:00
t_struct_init_bad.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_struct_init_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_struct_init_trace.py Change `--trace` to `--trace-vcd`. 2025-04-05 10:46:39 -04:00
t_struct_initial_assign.py Commentary 2024-10-04 05:21:18 -04:00
t_struct_initial_assign.v Commentary 2024-10-04 05:21:18 -04:00
t_struct_initial_assign_public.py Tests: Add t_struct_initial_assign, still fails (#5380) (#5381). 2024-10-03 20:36:23 -04:00
t_struct_literal_param.py Fix struct literal on pattern assignment (#5552) (#5559) 2024-10-24 18:50:57 -04:00
t_struct_literal_param.v Fix struct literal on pattern assignment (#5552) (#5559) 2024-10-24 18:50:57 -04:00
t_struct_nest.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_struct_nest.v
t_struct_nest_uarray.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_struct_nest_uarray.v Tests: Only != is globally allowed to compare strings 2025-04-03 21:26:53 -04:00
t_struct_notfound_bad.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_struct_notfound_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_struct_notfound_bad.v
t_struct_packed_init_bad.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_struct_packed_init_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_struct_packed_init_bad.v
t_struct_packed_sysfunct.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_struct_packed_sysfunct.v
t_struct_packed_value_list.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_struct_packed_value_list.v
t_struct_packed_write_read.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_struct_packed_write_read.v
t_struct_param.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_struct_param.v
t_struct_param_overflow.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_struct_param_overflow.v
t_struct_pat.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_struct_pat.v Fix pattern assignment to real inside struct (#5713). 2025-01-03 19:39:48 -05:00
t_struct_pat_width.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_struct_pat_width.v
t_struct_port.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_struct_port.v
t_struct_portsel.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_struct_portsel.v
t_struct_type_bad.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_struct_type_bad.py Delay struct type determination until elaboration 2024-09-21 20:27:55 -04:00
t_struct_type_bad.v Delay struct type determination until elaboration 2024-09-21 20:27:55 -04:00
t_struct_unaligned.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_struct_unaligned.v
t_struct_unpacked.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_struct_unpacked.v Tests: Only != is globally allowed to compare strings 2025-04-03 21:26:53 -04:00
t_struct_unpacked_array.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_struct_unpacked_array.v
t_struct_unpacked_clean.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_struct_unpacked_clean.v
t_struct_unpacked_init.out
t_struct_unpacked_init.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_struct_unpacked_init.v
t_struct_unused.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_struct_unused.v
t_structu_dataType_assignment.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_structu_dataType_assignment.v
t_structu_dataType_assignment_bad.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_structu_dataType_assignment_bad.py Tests: Disable running some lint tests on vltmt 2025-03-29 07:14:45 -04:00
t_structu_dataType_assignment_bad.v
t_structu_wide.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_structu_wide.v
t_sv_bus_mux_demux.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_sv_bus_mux_demux.v
t_sv_conditional.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_sv_conditional.v
t_sv_cpu.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_sv_cpu.v
t_sys_delta_monitor.out Fix monitor block sensitivity items (#4400) (#5294) 2024-07-24 07:18:57 -04:00
t_sys_delta_monitor.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_sys_delta_monitor.v Tests: Untabify some tests. 2024-09-01 21:12:37 -04:00
t_sys_file_autoflush.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_sys_file_basic.out
t_sys_file_basic.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_sys_file_basic.v Tests: Fix string !== for other simulators. 2024-10-03 18:14:53 -04:00
t_sys_file_basic_input.dat
t_sys_file_basic_mcd.out
t_sys_file_basic_mcd.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_sys_file_basic_mcd.v
t_sys_file_basic_mcd_test2_0.dat
t_sys_file_basic_mcd_test2_1.dat
t_sys_file_basic_mcd_test2_2.dat
t_sys_file_basic_mcd_test5.dat
t_sys_file_basic_uz.dat
t_sys_file_basic_uz.out
t_sys_file_basic_uz.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_sys_file_basic_uz.v
t_sys_file_eof.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_sys_file_eof.v
t_sys_file_null.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_sys_file_null.v
t_sys_file_scan.dat Fix `$fscanf` not returning -1 on EOF (#5881). 2025-03-25 08:28:36 -04:00
t_sys_file_scan.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_sys_file_scan.v Fix `$fscanf` not returning -1 on EOF (#5881). 2025-03-25 08:28:36 -04:00
t_sys_file_scan2.dat Fix `$fscanf` not returning -1 on EOF (#5881). 2025-03-25 08:28:36 -04:00
t_sys_file_scan2.py Fix `$fscanf` not returning -1 on EOF (#5881). 2025-03-25 08:28:36 -04:00
t_sys_file_scan2.v Fix `$fscanf` not returning -1 on EOF (#5881). 2025-03-25 08:28:36 -04:00
t_sys_file_zero.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_sys_file_zero.v
t_sys_fmonitor.out
t_sys_fmonitor.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_sys_fmonitor.v
t_sys_fopen_bad.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_sys_fopen_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_sys_fopen_bad.v
t_sys_fread.out
t_sys_fread.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_sys_fread.v
t_sys_fscanf_bad.out
t_sys_fscanf_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_sys_fscanf_bad.v
t_sys_fstrobe.out
t_sys_fstrobe.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_sys_fstrobe.v
t_sys_monitor.out Fix monitor block sensitivity items (#4400) (#5294) 2024-07-24 07:18:57 -04:00
t_sys_monitor.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_sys_monitor.v Tests: Untabify some tests. 2024-09-01 21:12:37 -04:00
t_sys_monitor_changes.out Tests: Add test for (#4040). 2025-04-06 10:24:49 -04:00
t_sys_monitor_changes.py Tests: Add test for (#4040). 2025-04-06 10:24:49 -04:00
t_sys_monitor_changes.v Tests: Add test for (#4040). 2025-04-06 10:24:49 -04:00
t_sys_monitor_dotted.py Fix `$monitor` with dotted references (#5794). 2025-02-21 17:18:49 -05:00
t_sys_monitor_dotted.v Fix `$monitor` with dotted references (#5794). 2025-02-21 17:18:49 -05:00
t_sys_plusargs.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_sys_plusargs.v Fix mis-removing $value$plusargs calls (#5127) (#5137). [Seth Pellegrino] 2024-07-02 18:46:58 -04:00
t_sys_plusargs_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_sys_plusargs_bad.v
t_sys_psprintf.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_sys_psprintf.v Support `$psprintf` system function (#4314) (#5169) 2024-06-10 08:38:26 -04:00
t_sys_psprintf_warn_bad.out Support `$psprintf` system function (#4314) (#5169) 2024-06-10 08:38:26 -04:00
t_sys_psprintf_warn_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_sys_rand.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_sys_rand.v
t_sys_rand_concat.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_sys_rand_concat.v
t_sys_rand_seed.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_sys_rand_seed.v Fix misoptimizing away `$urandom` (#5703). 2025-01-11 08:48:40 -05:00
t_sys_readmem.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_sys_readmem.v
t_sys_readmem_4state.mem
t_sys_readmem_4state.py Tests: Cleanup some .out filenames. No test coverage change. 2025-04-05 13:46:22 -04:00
t_sys_readmem_4state.v
t_sys_readmem_4state__b.mem.out Tests: Cleanup some .out filenames. No test coverage change. 2025-04-05 13:46:22 -04:00
t_sys_readmem_4state__h.mem.out Tests: Cleanup some .out filenames. No test coverage change. 2025-04-05 13:46:22 -04:00
t_sys_readmem_align_h.mem
t_sys_readmem_assoc.py Tests: Cleanup some .out filenames. No test coverage change. 2025-04-05 13:46:22 -04:00
t_sys_readmem_assoc.v
t_sys_readmem_assoc__c_b.mem.out Tests: Cleanup some .out filenames. No test coverage change. 2025-04-05 13:46:22 -04:00
t_sys_readmem_assoc__w_h.mem.out Tests: Cleanup some .out filenames. No test coverage change. 2025-04-05 13:46:22 -04:00
t_sys_readmem_assoc_bad.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_sys_readmem_assoc_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_sys_readmem_assoc_bad.v
t_sys_readmem_b.mem
t_sys_readmem_b_8.mem
t_sys_readmem_bad_addr.mem
t_sys_readmem_bad_addr.out
t_sys_readmem_bad_addr.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_sys_readmem_bad_addr.v
t_sys_readmem_bad_addr2.mem
t_sys_readmem_bad_addr2.out
t_sys_readmem_bad_addr2.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_sys_readmem_bad_addr2.v
t_sys_readmem_bad_digit.mem
t_sys_readmem_bad_digit.out
t_sys_readmem_bad_digit.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_sys_readmem_bad_digit.v
t_sys_readmem_bad_end.mem
t_sys_readmem_bad_end.out
t_sys_readmem_bad_end.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_sys_readmem_bad_end.v
t_sys_readmem_bad_end2.mem
t_sys_readmem_bad_notfound.out
t_sys_readmem_bad_notfound.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_sys_readmem_bad_notfound.v
t_sys_readmem_c.mem
t_sys_readmem_eof.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_sys_readmem_eof.v
t_sys_readmem_h.mem
t_sys_readmem_i.mem
t_sys_readmem_q.mem
t_sys_readmem_s.mem
t_sys_sformat.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_sys_sformat.v Fix $sformat with array arguments (#5330). 2024-08-08 03:32:07 -04:00
t_sys_sformat_noopt.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_sys_strobe.out
t_sys_strobe.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_sys_strobe.v
t_sys_system.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_sys_system.v
t_sys_time.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_sys_time.v
t_sys_writemem.gold1.mem
t_sys_writemem.gold2.mem
t_sys_writemem.gold3.mem
t_sys_writemem.gold4.mem
t_sys_writemem.gold5.mem
t_sys_writemem.gold6.mem
t_sys_writemem.gold7.mem
t_sys_writemem.gold8.mem
t_sys_writemem.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_sys_writemem_b.gold1.mem
t_sys_writemem_b.gold2.mem
t_sys_writemem_b.gold3.mem
t_sys_writemem_b.gold4.mem
t_sys_writemem_b.gold5.mem
t_sys_writemem_b.gold6.mem
t_sys_writemem_b.gold7.mem
t_sys_writemem_b.gold8.mem
t_sys_writemem_b.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_table_fsm.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_table_fsm.v
t_tagged.out Change unsupported 'tagged' into parse-level message 2025-04-30 18:30:19 -04:00
t_tagged.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_tagged.v Change unsupported 'tagged' into parse-level message 2025-04-30 18:30:19 -04:00
t_threads_counter.v
t_threads_counter_0.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_threads_counter_1.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_threads_counter_2.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_threads_counter_4.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_threads_crazy.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_threads_crazy.v
t_threads_crazy_context.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_threads_nondeterminism.py Tests: Move per-command expect= to instead check logfiles 2024-09-19 18:53:22 -04:00
t_time.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_time.v
t_time_literals.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_time_literals.v
t_time_param.py Fix time import error on time parameters (#5786). 2025-02-19 17:03:59 -05:00
t_time_param.v Fix time import error on time parameters (#5786). 2025-02-19 17:03:59 -05:00
t_time_passed.out
t_time_passed.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_time_passed.v
t_time_print.out
t_time_print.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_time_print.v
t_time_sc.v
t_time_sc_bad.out
t_time_sc_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_time_sc_bad_mt.out
t_time_sc_bad_mt.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_time_sc_fs.out
t_time_sc_fs.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_time_sc_ms.out
t_time_sc_ms.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_time_sc_ns.out
t_time_sc_ns.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_time_sc_sec.out
t_time_sc_sec.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_time_sc_us.out
t_time_sc_us.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_time_stamp64.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_time_stamp64.v
t_time_stamp_double.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_time_timeunit.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_time_timeunit.v
t_time_vpi.v
t_time_vpi_1fs1fs.out
t_time_vpi_1fs1fs.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_time_vpi_1ms10ns.out
t_time_vpi_1ms10ns.py Change `--trace` to `--trace-vcd`. 2025-04-05 10:46:39 -04:00
t_time_vpi_1ns1ns.out
t_time_vpi_1ns1ns.py Change `--trace` to `--trace-vcd`. 2025-04-05 10:46:39 -04:00
t_time_vpi_1ps1fs.out
t_time_vpi_1ps1fs.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_time_vpi_1s10ns.out
t_time_vpi_1s10ns.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_time_vpi_1us1ns.out
t_time_vpi_1us1ns.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_time_vpi_10ms10ns.out
t_time_vpi_10ms10ns.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_time_vpi_100s10ms.out
t_time_vpi_100s10ms.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_time_vpi_c.cpp
t_timescale_default.out
t_timescale_default.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_timescale_default.v
t_timescale_lint.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_timescale_lint.v
t_timescale_lint2.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_timescale_lint_bad.out
t_timescale_lint_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_timescale_parse.cpp Add assertion on reusing VerilatedContext (#5167). 2024-06-11 19:38:58 -04:00
t_timescale_parse.py Tests: Fix some non-IEEE issues in tests. 2024-09-27 09:00:20 -04:00
t_timescale_parse.v
t_timescale_parse_bad.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_timescale_parse_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_timescale_parse_bad.v
t_timescale_udp.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_timescale_udp.v
t_timescale_unit.out
t_timescale_unit.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_timescale_unit.v
t_timing_always.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_timing_always.v
t_timing_class.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_timing_class.v
t_timing_class_static_delay.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_timing_class_static_delay.v
t_timing_clkgen1.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_timing_clkgen1.v
t_timing_clkgen2.py Fix `BLKSEQ` on suspendable processes (#5722) 2025-01-09 08:40:32 -05:00
t_timing_clkgen2.v Fix `BLKSEQ` on suspendable processes (#5722) 2025-01-09 08:40:32 -05:00
t_timing_clkgen3.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_timing_clkgen3.v
t_timing_clkgen_sc.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_timing_clkgen_unsup.out
t_timing_clkgen_unsup.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_timing_cmake.py Tests: Fix Ubuntu24.04 clang test issues, and enable action (#5824) 2025-03-02 16:53:59 -05:00
t_timing_debug1.out Fix always processes ignoring $finish (#5971). 2025-05-02 07:36:42 -04:00
t_timing_debug1.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_timing_debug2.out Optimize empty function definition bodies (#5750). 2025-01-25 12:13:25 -05:00
t_timing_debug2.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_timing_delay_callstack.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_timing_delay_callstack.v
t_timing_dlyassign.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_timing_dlyassign.v
t_timing_dpi_unsup.cpp
t_timing_dpi_unsup.out
t_timing_dpi_unsup.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_timing_dpi_unsup.v
t_timing_dynscope.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_timing_dynscope.v
t_timing_events.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_timing_events.v
t_timing_finish.py Fix timing mode not exiting on empty events (#5472). 2024-09-20 17:46:27 -04:00
t_timing_finish.v Tests: Update t_timing_finish (#5472) 2024-09-21 07:46:04 -04:00
t_timing_finish2.py Fix always processes ignoring $finish (#5971). 2025-05-02 07:36:42 -04:00
t_timing_finish2.v Fix always processes ignoring $finish (#5971). 2025-05-02 07:36:42 -04:00
t_timing_fork_comb.py Tests: Fix t_timing_fork_comb_bad committed earlier 2024-09-20 22:16:00 -04:00
t_timing_fork_comb.v
t_timing_fork_comb_bad.py Tests: Fix t_timing_fork_comb_bad committed earlier 2024-09-20 22:16:00 -04:00
t_timing_fork_join.out
t_timing_fork_join.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_timing_fork_join.v
t_timing_fork_join_forkproc.out
t_timing_fork_join_forkproc.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_timing_fork_many.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_timing_fork_many.v
t_timing_fork_nba.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_timing_fork_nba.v
t_timing_fork_no_timing_ctrl.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_timing_fork_no_timing_ctrl.v
t_timing_fork_rec_method.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_timing_fork_rec_method.v
t_timing_fork_taskcall.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_timing_fork_taskcall.v
t_timing_func_bad.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_timing_func_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_timing_func_bad.v
t_timing_func_join.py Fix `function fork...join_none` regression with unknown type (#4449). 2024-11-13 08:00:43 -05:00
t_timing_func_join.v Fix `function fork...join_none` regression with unknown type (#4449). 2024-11-13 08:00:43 -05:00
t_timing_initial_always.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_timing_initial_always.v Fix optimized-out sentrees with `--timing` (#5080) (#5349) 2024-08-08 21:57:12 +01:00
t_timing_intra_assign.out Support IEEE-compliant intra-assign delays (#3711) (#5441) 2024-09-06 18:13:52 -04:00
t_timing_intra_assign.py Tests: Avoid multiple lint/compile runs in one test; hard to debug 2024-09-20 20:34:35 -04:00
t_timing_intra_assign.v Support IEEE-compliant intra-assign delays (#3711) (#5441) 2024-09-06 18:13:52 -04:00
t_timing_intra_assign_nolocalize.py Tests: Avoid multiple lint/compile runs in one test; hard to debug 2024-09-20 20:34:35 -04:00
t_timing_localevent.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_timing_localevent.v Support named event locals (#5422) 2024-08-30 17:10:47 +02:00
t_timing_long.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_timing_nba_1.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_timing_nba_1.v Fix NBAs in suspendables (#5348) 2024-08-08 22:12:00 +01:00
t_timing_nba_2.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_timing_nba_2.v Fix NBAs in suspendables (#5348) 2024-08-08 22:12:00 +01:00
t_timing_nested_assignment_on_lhs.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_timing_nested_assignment_on_lhs.v
t_timing_off.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_timing_off.v
t_timing_osc.out Fix trace hierarchicalName runtime errors (#5668) (#6076). 2025-06-10 20:17:32 -04:00
t_timing_osc.py Change `--trace` to `--trace-vcd`. 2025-04-05 10:46:39 -04:00
t_timing_osc.v
t_timing_pong.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_timing_pong.v
t_timing_protect.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_timing_reentry.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_timing_reentry.v
t_timing_sched.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_timing_sched.v
t_timing_sched_if.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_timing_sched_if.v
t_timing_sched_nba.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_timing_sched_nba.v
t_timing_split.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_timing_split.v
t_timing_strobe.out
t_timing_strobe.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_timing_strobe.v Tests: Remove unused clk input 2024-10-07 21:44:07 -04:00
t_timing_suspendable_deep.py Tests: Cleanup as --binary implies --timing. No test functional change. 2025-03-29 15:50:07 -04:00
t_timing_suspendable_deep.v Tests: Rename some tests 2024-11-10 20:00:16 -05:00
t_timing_timescale.out Change `--main` and `--binary` to use a TOP hierarchy name of "" (#5482). 2024-09-22 23:03:51 -04:00
t_timing_timescale.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_timing_timescale.v
t_timing_trace.out Fix trace hierarchicalName runtime errors (#5668) (#6076). 2025-06-10 20:17:32 -04:00
t_timing_trace.py Change `--trace` to `--trace-vcd`. 2025-04-05 10:46:39 -04:00
t_timing_trace.v
t_timing_trace_fst.out Fix trace hierarchicalName runtime errors (#5668) (#6076). 2025-06-10 20:17:32 -04:00
t_timing_trace_fst.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_timing_trace_saif.out Fix trace hierarchicalName runtime errors (#5668) (#6076). 2025-06-10 20:17:32 -04:00
t_timing_trace_saif.py Add `--trace-saif` for SAIF power traces (#5812) 2025-03-07 10:41:29 -05:00
t_timing_unset1.out
t_timing_unset1.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_timing_unset2.out
t_timing_unset2.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_timing_unset3.out
t_timing_unset3.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_timing_wait1.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_timing_wait1.v
t_timing_wait2.out
t_timing_wait2.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_timing_wait2.v
t_timing_wait3.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_timing_wait3.v
t_timing_wait_long.out
t_timing_wait_long.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_timing_wait_long.v
t_timing_write_expr.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_timing_write_expr.v
t_timing_zerodly.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_timing_zerodly.v
t_timing_zerodly_consecutive.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_timing_zerodly_consecutive.v
t_timing_zerodly_unsup.out
t_timing_zerodly_unsup.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_timing_zerodly_unsup.v
t_trace_abort.out
t_trace_abort.py Change `--trace` to `--trace-vcd`. 2025-04-05 10:46:39 -04:00
t_trace_abort.v
t_trace_abort_fst.out
t_trace_abort_fst.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_trace_abort_fst_sc.out Optimize duplicate timestamps out of traces (#4686) 2025-04-05 14:19:58 -04:00
t_trace_abort_fst_sc.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_trace_abort_saif.out Add `--trace-saif` for SAIF power traces (#5812) 2025-03-07 10:41:29 -05:00
t_trace_abort_saif.py Add `--trace-saif` for SAIF power traces (#5812) 2025-03-07 10:41:29 -05:00
t_trace_array.out
t_trace_array.py Change `--trace` to `--trace-vcd`. 2025-04-05 10:46:39 -04:00
t_trace_array.v
t_trace_array_fst.out
t_trace_array_fst.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_trace_array_fst_portable.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_trace_array_fst_portable_sc.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_trace_array_fst_sc.out Optimize duplicate timestamps out of traces (#4686) 2025-04-05 14:19:58 -04:00
t_trace_array_fst_sc.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_trace_array_fst_threads_1.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_trace_array_fst_threads_1_sc.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_trace_array_fst_threads_2.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_trace_array_fst_threads_2_sc.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_trace_array_saif.out In SAIF dumps include signals with TC 0 (#5914) 2025-04-03 16:25:10 -04:00
t_trace_array_saif.py Optimize SAIF writes (#5916) 2025-04-05 15:09:32 -04:00
t_trace_array_saif_portable.py Optimize SAIF writes (#5916) 2025-04-05 15:09:32 -04:00
t_trace_array_saif_threads_1.py Optimize SAIF writes (#5916) 2025-04-05 15:09:32 -04:00
t_trace_array_saif_threads_2.py Optimize SAIF writes (#5916) 2025-04-05 15:09:32 -04:00
t_trace_array_threads_1.py Change `--trace` to `--trace-vcd`. 2025-04-05 10:46:39 -04:00
t_trace_ascendingrange.out
t_trace_ascendingrange.py Change `--trace` to `--trace-vcd`. 2025-04-05 10:46:39 -04:00
t_trace_ascendingrange.v
t_trace_ascendingrange_fst.out
t_trace_ascendingrange_fst.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_trace_ascendingrange_fst_sc.out Optimize duplicate timestamps out of traces (#4686) 2025-04-05 14:19:58 -04:00
t_trace_ascendingrange_fst_sc.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_trace_ascendingrange_saif.out In SAIF dumps include signals with TC 0 (#5914) 2025-04-03 16:25:10 -04:00
t_trace_ascendingrange_saif.py Add `--trace-saif` for SAIF power traces (#5812) 2025-03-07 10:41:29 -05:00
t_trace_binary.out Fix trace hierarchicalName runtime errors (#5668) (#6076). 2025-06-10 20:17:32 -04:00
t_trace_binary.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_trace_binary.v
t_trace_binary_flag_off.out
t_trace_binary_flag_off.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_trace_cat.cpp
t_trace_cat.out
t_trace_cat.py Change `--trace` to `--trace-vcd`. 2025-04-05 10:46:39 -04:00
t_trace_cat.v
t_trace_cat_fst.cpp
t_trace_cat_fst.py Tests: Cleanup some .out filenames. No test coverage change. 2025-04-05 13:46:22 -04:00
t_trace_cat_fst.v
t_trace_cat_fst__0000.out Tests: Cleanup some .out filenames. No test coverage change. 2025-04-05 13:46:22 -04:00
t_trace_cat_fst__0100.out Tests: Cleanup some .out filenames. No test coverage change. 2025-04-05 13:46:22 -04:00
t_trace_cat_renew.out
t_trace_cat_renew.py Tests: Cleanup some .out filenames. No test coverage change. 2025-04-05 13:46:22 -04:00
t_trace_cat_renew__0000.out Tests: Cleanup some .out filenames. No test coverage change. 2025-04-05 13:46:22 -04:00
t_trace_cat_renew__0100.out Tests: Cleanup some .out filenames. No test coverage change. 2025-04-05 13:46:22 -04:00
t_trace_cat_reopen.out
t_trace_cat_reopen.py Tests: Cleanup some .out filenames. No test coverage change. 2025-04-05 13:46:22 -04:00
t_trace_cat_reopen__0000.out Tests: Cleanup some .out filenames. No test coverage change. 2025-04-05 13:46:22 -04:00
t_trace_cat_reopen__0100.out Tests: Cleanup some .out filenames. No test coverage change. 2025-04-05 13:46:22 -04:00
t_trace_class.out Fix trace hierarchicalName runtime errors (#5668) (#6076). 2025-06-10 20:17:32 -04:00
t_trace_class.py Change `--trace` to `--trace-vcd`. 2025-04-05 10:46:39 -04:00
t_trace_class.v
t_trace_complex.out Fix trace hierarchicalName runtime errors (#5668) (#6076). 2025-06-10 20:17:32 -04:00
t_trace_complex.py Change `--trace` to `--trace-vcd`. 2025-04-05 10:46:39 -04:00
t_trace_complex.v Tests: Untabify some tests. 2024-09-01 21:12:37 -04:00
t_trace_complex_fst.out Fix trace hierarchicalName runtime errors (#5668) (#6076). 2025-06-10 20:17:32 -04:00
t_trace_complex_fst.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_trace_complex_fst_sc.out Optimize duplicate timestamps out of traces (#4686) 2025-04-05 14:19:58 -04:00
t_trace_complex_fst_sc.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_trace_complex_fst_thread.out
t_trace_complex_fst_threads_1.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_trace_complex_fst_threads_1_sc.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_trace_complex_fst_threads_2.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_trace_complex_fst_threads_2_sc.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_trace_complex_params.out Fix trace hierarchicalName runtime errors (#5668) (#6076). 2025-06-10 20:17:32 -04:00
t_trace_complex_params.py Change `--trace` to `--trace-vcd`. 2025-04-05 10:46:39 -04:00
t_trace_complex_params_fst.out Fix trace hierarchicalName runtime errors (#5668) (#6076). 2025-06-10 20:17:32 -04:00
t_trace_complex_params_fst.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_trace_complex_params_fst_sc.out Optimize duplicate timestamps out of traces (#4686) 2025-04-05 14:19:58 -04:00
t_trace_complex_params_fst_sc.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_trace_complex_params_saif.out In SAIF dumps include signals with TC 0 (#5914) 2025-04-03 16:25:10 -04:00
t_trace_complex_params_saif.py Add `--trace-saif` for SAIF power traces (#5812) 2025-03-07 10:41:29 -05:00
t_trace_complex_portable.py Change `--trace` to `--trace-vcd`. 2025-04-05 10:46:39 -04:00
t_trace_complex_saif.out In SAIF dumps include signals with TC 0 (#5914) 2025-04-03 16:25:10 -04:00
t_trace_complex_saif.py Add `--trace-saif` for SAIF power traces (#5812) 2025-03-07 10:41:29 -05:00
t_trace_complex_saif_threads_1.py Add `--trace-saif` for SAIF power traces (#5812) 2025-03-07 10:41:29 -05:00
t_trace_complex_saif_threads_2.py Add `--trace-saif` for SAIF power traces (#5812) 2025-03-07 10:41:29 -05:00
t_trace_complex_structs.out Fix trace hierarchicalName runtime errors (#5668) (#6076). 2025-06-10 20:17:32 -04:00
t_trace_complex_structs.py Change `--trace` to `--trace-vcd`. 2025-04-05 10:46:39 -04:00
t_trace_complex_structs_fst.out Fix trace hierarchicalName runtime errors (#5668) (#6076). 2025-06-10 20:17:32 -04:00
t_trace_complex_structs_fst.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_trace_complex_structs_fst_sc.out Optimize duplicate timestamps out of traces (#4686) 2025-04-05 14:19:58 -04:00
t_trace_complex_structs_fst_sc.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_trace_complex_structs_saif.out In SAIF dumps include signals with TC 0 (#5914) 2025-04-03 16:25:10 -04:00
t_trace_complex_structs_saif.py Add `--trace-saif` for SAIF power traces (#5812) 2025-03-07 10:41:29 -05:00
t_trace_complex_threads_1.py Change `--trace` to `--trace-vcd`. 2025-04-05 10:46:39 -04:00
t_trace_decoration.py Change `--trace` to `--trace-vcd`. 2025-04-05 10:46:39 -04:00
t_trace_decoration.v
t_trace_dumporder_bad.out
t_trace_dumporder_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_trace_dumporder_bad.v
t_trace_dumpvars_dyn.cpp Add `--trace-saif` for SAIF power traces (#5812) 2025-03-07 10:41:29 -05:00
t_trace_dumpvars_dyn.v
t_trace_dumpvars_dyn_fst_0.out
t_trace_dumpvars_dyn_fst_0.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_trace_dumpvars_dyn_fst_1.out Optimize duplicate timestamps out of traces (#4686) 2025-04-05 14:19:58 -04:00
t_trace_dumpvars_dyn_fst_1.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_trace_dumpvars_dyn_saif_0.out In SAIF dumps include signals with TC 0 (#5914) 2025-04-03 16:25:10 -04:00
t_trace_dumpvars_dyn_saif_0.py Add `--trace-saif` for SAIF power traces (#5812) 2025-03-07 10:41:29 -05:00
t_trace_dumpvars_dyn_saif_1.out In SAIF dumps include signals with TC 0 (#5914) 2025-04-03 16:25:10 -04:00
t_trace_dumpvars_dyn_saif_1.py Add `--trace-saif` for SAIF power traces (#5812) 2025-03-07 10:41:29 -05:00
t_trace_dumpvars_dyn_vcd_0.out
t_trace_dumpvars_dyn_vcd_0.py Change `--trace` to `--trace-vcd`. 2025-04-05 10:46:39 -04:00
t_trace_dumpvars_dyn_vcd_1.out Optimize duplicate timestamps out of traces (#4686) 2025-04-05 14:19:58 -04:00
t_trace_dumpvars_dyn_vcd_1.py Change `--trace` to `--trace-vcd`. 2025-04-05 10:46:39 -04:00
t_trace_empty.py Change `--trace` to `--trace-vcd`. 2025-04-05 10:46:39 -04:00
t_trace_empty.v
t_trace_ena.v
t_trace_ena_cc.out Optimize duplicate timestamps out of traces (#4686) 2025-04-05 14:19:58 -04:00
t_trace_ena_cc.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_trace_ena_sc.out Optimize duplicate timestamps out of traces (#4686) 2025-04-05 14:19:58 -04:00
t_trace_ena_sc.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_trace_enum.v
t_trace_enum_fst.out Optimize duplicate timestamps out of traces (#4686) 2025-04-05 14:19:58 -04:00
t_trace_enum_fst.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_trace_enum_saif.out In SAIF dumps include signals with TC 0 (#5914) 2025-04-03 16:25:10 -04:00
t_trace_enum_saif.py Add `--trace-saif` for SAIF power traces (#5812) 2025-03-07 10:41:29 -05:00
t_trace_event.out Fix trace hierarchicalName runtime errors (#5668) (#6076). 2025-06-10 20:17:32 -04:00
t_trace_event.py Change `--trace` to `--trace-vcd`. 2025-04-05 10:46:39 -04:00
t_trace_event.v Fix extra events in traces (#5405). 2024-09-10 19:14:52 -04:00
t_trace_event_fst.out Fix trace hierarchicalName runtime errors (#5668) (#6076). 2025-06-10 20:17:32 -04:00
t_trace_event_fst.py Fix extra events in traces (#5405). 2024-09-10 19:14:52 -04:00
t_trace_flag_off.out
t_trace_flag_off.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_trace_flag_off.v
t_trace_fst.out Optimize duplicate timestamps out of traces (#4686) 2025-04-05 14:19:58 -04:00
t_trace_fst.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_trace_fst.v
t_trace_fst_cmake.out Optimize duplicate timestamps out of traces (#4686) 2025-04-05 14:19:58 -04:00
t_trace_fst_cmake.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_trace_fst_cmake.v
t_trace_fst_sc.out Optimize duplicate timestamps out of traces (#4686) 2025-04-05 14:19:58 -04:00
t_trace_fst_sc.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_trace_fst_sc.v
t_trace_fst_sc_cmake.out Optimize duplicate timestamps out of traces (#4686) 2025-04-05 14:19:58 -04:00
t_trace_fst_sc_cmake.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_trace_fst_sc_cmake.v
t_trace_iface.out
t_trace_iface.py Change `--trace` to `--trace-vcd`. 2025-04-05 10:46:39 -04:00
t_trace_iface.v
t_trace_jumps_do_while_saif.out Add `--trace-saif` for SAIF power traces (#5812) 2025-03-07 10:41:29 -05:00
t_trace_jumps_do_while_saif.py Add `--trace-saif` for SAIF power traces (#5812) 2025-03-07 10:41:29 -05:00
t_trace_no_top_name.out Fix trace hierarchicalName runtime errors (#5668) (#6076). 2025-06-10 20:17:32 -04:00
t_trace_no_top_name.py Change `--trace` to `--trace-vcd`. 2025-04-05 10:46:39 -04:00
t_trace_no_top_name.v Fix tracing with `--main-top-name -` (#5261). 2024-07-14 07:35:26 -04:00
t_trace_no_top_name2.cpp Add `--trace-saif` for SAIF power traces (#5812) 2025-03-07 10:41:29 -05:00
t_trace_no_top_name2.v Fix trace hierarchicalName runtime errors (#5668) (#6076). 2025-06-10 20:17:32 -04:00
t_trace_no_top_name2_fst.out Fix trace hierarchicalName runtime errors (#5668) (#6076). 2025-06-10 20:17:32 -04:00
t_trace_no_top_name2_fst.py Fix tracing when name() is empty (#5470). 2024-09-21 08:25:14 -04:00
t_trace_no_top_name2_saif.out Fix trace hierarchicalName runtime errors (#5668) (#6076). 2025-06-10 20:17:32 -04:00
t_trace_no_top_name2_saif.py Add `--trace-saif` for SAIF power traces (#5812) 2025-03-07 10:41:29 -05:00
t_trace_no_top_name2_vcd.out Fix trace hierarchicalName runtime errors (#5668) (#6076). 2025-06-10 20:17:32 -04:00
t_trace_no_top_name2_vcd.py Change `--trace` to `--trace-vcd`. 2025-04-05 10:46:39 -04:00
t_trace_noflag_bad.out Change `--trace` to `--trace-vcd`. 2025-04-05 10:46:39 -04:00
t_trace_noflag_bad.py Tests: Cleanup some .cpp paths. No test functional change indended. 2025-04-25 20:57:11 -04:00
t_trace_noflag_bad.v
t_trace_noflag_bad_c.cpp
t_trace_off_cc.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_trace_off_sc.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_trace_open_wrong_order_bad.cpp Tests: Fix GCC 13.2.0 issues. No functional change. 2024-09-06 22:04:49 -04:00
t_trace_open_wrong_order_bad.out
t_trace_open_wrong_order_bad.py Change `--trace` to `--trace-vcd`. 2025-04-05 10:46:39 -04:00
t_trace_open_wrong_order_bad.v
t_trace_packed_struct.py Change `--trace` to `--trace-vcd`. 2025-04-05 10:46:39 -04:00
t_trace_packed_struct.v
t_trace_packed_struct_fst.out
t_trace_packed_struct_fst.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_trace_packed_struct_fst_sc.out Optimize duplicate timestamps out of traces (#4686) 2025-04-05 14:19:58 -04:00
t_trace_packed_struct_fst_sc.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_trace_packed_struct_saif.out In SAIF dumps include signals with TC 0 (#5914) 2025-04-03 16:25:10 -04:00
t_trace_packed_struct_saif.py Add `--trace-saif` for SAIF power traces (#5812) 2025-03-07 10:41:29 -05:00
t_trace_param.py Change `--trace` to `--trace-vcd`. 2025-04-05 10:46:39 -04:00
t_trace_param.v
t_trace_param_fst.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_trace_param_override.out Fix trace hierarchicalName runtime errors (#5668) (#6076). 2025-06-10 20:17:32 -04:00
t_trace_param_override.py Change `--trace` to `--trace-vcd`. 2025-04-05 10:46:39 -04:00
t_trace_param_override.v
t_trace_param_saif.out In SAIF dumps include signals with TC 0 (#5914) 2025-04-03 16:25:10 -04:00
t_trace_param_saif.py Add `--trace-saif` for SAIF power traces (#5812) 2025-03-07 10:41:29 -05:00
t_trace_primitive.py Change `--trace` to `--trace-vcd`. 2025-04-05 10:46:39 -04:00
t_trace_primitive.v Tests: Fix some non-IEEE issues in tests. 2024-09-27 09:00:20 -04:00
t_trace_primitive_fst.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_trace_primitive_fst_sc.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_trace_primitive_saif.out In SAIF dumps include signals with TC 0 (#5914) 2025-04-03 16:25:10 -04:00
t_trace_primitive_saif.py Add `--trace-saif` for SAIF power traces (#5812) 2025-03-07 10:41:29 -05:00
t_trace_public.out Fix trace hierarchicalName runtime errors (#5668) (#6076). 2025-06-10 20:17:32 -04:00
t_trace_public.v
t_trace_public_func.cpp
t_trace_public_func.py Change `--trace` to `--trace-vcd`. 2025-04-05 10:46:39 -04:00
t_trace_public_func.vlt
t_trace_public_func_vlt.py Change `--trace` to `--trace-vcd`. 2025-04-05 10:46:39 -04:00
t_trace_public_sig.cpp
t_trace_public_sig.py Change `--trace` to `--trace-vcd`. 2025-04-05 10:46:39 -04:00
t_trace_public_sig.vlt
t_trace_public_sig_vlt.out
t_trace_public_sig_vlt.py Change `--trace` to `--trace-vcd`. 2025-04-05 10:46:39 -04:00
t_trace_rollover.cpp
t_trace_rollover.out
t_trace_rollover.py Change `--trace` to `--trace-vcd`. 2025-04-05 10:46:39 -04:00
t_trace_saif.out In SAIF dumps include signals with TC 0 (#5914) 2025-04-03 16:25:10 -04:00
t_trace_saif.py Add `--trace-saif` for SAIF power traces (#5812) 2025-03-07 10:41:29 -05:00
t_trace_saif_cmake.out In SAIF dumps include signals with TC 0 (#5914) 2025-04-03 16:25:10 -04:00
t_trace_saif_cmake.py Add `--trace-saif` for SAIF power traces (#5812) 2025-03-07 10:41:29 -05:00
t_trace_saif_sc.out In SAIF dumps include signals with TC 0 (#5914) 2025-04-03 16:25:10 -04:00
t_trace_saif_sc.py Add `--trace-saif` for SAIF power traces (#5812) 2025-03-07 10:41:29 -05:00
t_trace_sc_empty.py Change `--trace` to `--trace-vcd`. 2025-04-05 10:46:39 -04:00
t_trace_sc_empty.v
t_trace_scope_no_inline.out Fix tracing_{on,off} in the presence of non-inlined modules (#5346) 2024-08-08 17:16:54 +01:00
t_trace_scope_no_inline.py Change `--trace` to `--trace-vcd`. 2025-04-05 10:46:39 -04:00
t_trace_scope_no_inline.v Fix tracing_{on,off} in the presence of non-inlined modules (#5346) 2024-08-08 17:16:54 +01:00
t_trace_scope_no_inline.vlt Fix tracing_{on,off} in the presence of non-inlined modules (#5346) 2024-08-08 17:16:54 +01:00
t_trace_scope_vlt.out
t_trace_scope_vlt.py Change `--trace` to `--trace-vcd`. 2025-04-05 10:46:39 -04:00
t_trace_scope_vlt.v
t_trace_scope_vlt.vlt
t_trace_scstruct.py Change `--trace` to `--trace-vcd`. 2025-04-05 10:46:39 -04:00
t_trace_scstruct.v
t_trace_split_cfuncs.py Change `--trace` to `--trace-vcd`. 2025-04-05 10:46:39 -04:00
t_trace_split_cfuncs.v
t_trace_split_cfuncs_dpi_export.py Change `--trace` to `--trace-vcd`. 2025-04-05 10:46:39 -04:00
t_trace_split_cfuncs_dpi_export.v
t_trace_string.py Change `--trace` to `--trace-vcd`. 2025-04-05 10:46:39 -04:00
t_trace_string.v
t_trace_string_fst.py Change `--trace` to `--trace-vcd`. 2025-04-05 10:46:39 -04:00
t_trace_string_fst_sc.py Change `--trace` to `--trace-vcd`. 2025-04-05 10:46:39 -04:00
t_trace_timescale.out
t_trace_timescale.py Change `--trace` to `--trace-vcd`. 2025-04-05 10:46:39 -04:00
t_trace_timescale.v
t_trace_timing1.out Fix trace hierarchicalName runtime errors (#5668) (#6076). 2025-06-10 20:17:32 -04:00
t_trace_timing1.py Change `--trace` to `--trace-vcd`. 2025-04-05 10:46:39 -04:00
t_trace_timing1.v
t_trace_two_a.v
t_trace_two_b.v
t_trace_two_cc.cpp
t_trace_two_dump_cc.out
t_trace_two_dump_cc.py Tests: Cleanup some .cpp paths. No test functional change indended. 2025-04-25 20:57:11 -04:00
t_trace_two_dump_sc.out
t_trace_two_dump_sc.py Tests: Cleanup some .cpp paths. No test functional change indended. 2025-04-25 20:57:11 -04:00
t_trace_two_dumpfst_cc.out
t_trace_two_dumpfst_cc.py Tests: Cleanup some .cpp paths. No test functional change indended. 2025-04-25 20:57:11 -04:00
t_trace_two_hdr_cc.out
t_trace_two_hdr_cc.py Tests: Cleanup some .cpp paths. No test functional change indended. 2025-04-25 20:57:11 -04:00
t_trace_two_hdr_sc.out
t_trace_two_hdr_sc.py Tests: Cleanup some .cpp paths. No test functional change indended. 2025-04-25 20:57:11 -04:00
t_trace_two_hdrfst_cc.out
t_trace_two_hdrfst_cc.py Tests: Cleanup some .cpp paths. No test functional change indended. 2025-04-25 20:57:11 -04:00
t_trace_two_port_cc.out
t_trace_two_port_cc.py Tests: Cleanup some .cpp paths. No test functional change indended. 2025-04-25 20:57:11 -04:00
t_trace_two_port_sc.out
t_trace_two_port_sc.py Tests: Cleanup some .cpp paths. No test functional change indended. 2025-04-25 20:57:11 -04:00
t_trace_two_portfst_cc.out
t_trace_two_portfst_cc.py Tests: Cleanup some .cpp paths. No test functional change indended. 2025-04-25 20:57:11 -04:00
t_trace_two_sc.cpp
t_trace_ub_misaligned_address.out
t_trace_ub_misaligned_address.py Change `--trace` to `--trace-vcd`. 2025-04-05 10:46:39 -04:00
t_trace_ub_misaligned_address.v Tests: Untabify some tests. 2024-09-01 21:12:37 -04:00
t_trace_wide_struct.py Change `--trace` to `--trace-vcd`. 2025-04-05 10:46:39 -04:00
t_trace_wide_struct.v
t_tri_and_eqcase.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_tri_and_eqcase.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_tri_and_eqcase.v
t_tri_array.out
t_tri_array.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_tri_array.v
t_tri_array_bufif.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_tri_array_bufif.v
t_tri_array_pull.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_tri_array_pull.v
t_tri_compass_bad.out
t_tri_compass_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_tri_compass_bad.v
t_tri_cond_eqcase_with_1.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_tri_cond_eqcase_with_1.v
t_tri_dangle.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_tri_dangle.v
t_tri_eqcase.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_tri_eqcase.v
t_tri_eqcase_input.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_tri_eqcase_input.v
t_tri_gate.cpp
t_tri_gate.v
t_tri_gate_bufif0.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_tri_gate_bufif0_pins_inout.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_tri_gate_bufif1.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_tri_gate_bufif1_pins_inout.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_tri_gate_cond.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_tri_gate_cond_pins_inout.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_tri_gate_nmos.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_tri_gate_nmos_pins_inout.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_tri_gate_notif0.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_tri_gate_notif0_pins_inout.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_tri_gate_notif1.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_tri_gate_notif1_pins_inout.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_tri_gate_pmos.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_tri_gate_pmos_pins_inout.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_tri_gen.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_tri_gen.v
t_tri_graph.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_tri_graph.v
t_tri_ifbegin.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_tri_ifbegin.v
t_tri_inout.cpp
t_tri_inout.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_tri_inout.v
t_tri_inout2.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_tri_inout2.v
t_tri_inout_pins_inout.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_tri_inz.cpp
t_tri_inz.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_tri_inz.v
t_tri_no_top.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_tri_no_top.v
t_tri_public.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_tri_public.v
t_tri_pull01.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_tri_pull01.v
t_tri_pull2_bad.out
t_tri_pull2_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_tri_pull2_bad.v
t_tri_pull_bad.out
t_tri_pull_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_tri_pull_bad.v
t_tri_pull_implicit.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_tri_pull_implicit.v
t_tri_pullup.cpp
t_tri_pullup.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_tri_pullup.v
t_tri_pullup_pins_inout.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_tri_pullvec_bad.out
t_tri_pullvec_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_tri_pullvec_bad.v
t_tri_select.cpp
t_tri_select.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_tri_select.v
t_tri_select_eqcase.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_tri_select_eqcase.v
t_tri_select_pins_inout.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_tri_select_unsized.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_tri_select_unsized.v
t_tri_struct.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_tri_struct.v
t_tri_struct_packed.out
t_tri_struct_packed.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_tri_struct_packed.v
t_tri_struct_pins_inout.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_tri_top_en_out.cpp Internals: Remove single-statement braces. No functional change. 2025-03-19 22:55:11 -04:00
t_tri_top_en_out.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_tri_top_en_out.v
t_tri_top_en_out_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_tri_top_en_out_bad.v
t_tri_unconn.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_tri_unconn.v
t_tri_various.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_tri_various.v
t_type.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_type.v Fix type operator for interface signals (#6050) (#6049) 2025-06-06 11:29:33 -04:00
t_type_array.py Fix type operator for interface signals (#6050) (#6049) 2025-06-06 11:29:33 -04:00
t_type_array.v Fix type operator for interface signals (#6050) (#6049) 2025-06-06 11:29:33 -04:00
t_type_compare.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_type_compare.v
t_type_compare_bad.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_type_compare_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_type_compare_bad.v
t_type_match.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_type_match.v Tests: Untabify some tests. 2024-09-01 21:12:37 -04:00
t_type_non_type.py Disable symbol from parser: Support redeclaring type as non-type; major parsing change (#2412). 2025-05-18 07:13:37 -04:00
t_type_non_type.v Disable symbol from parser: Support redeclaring type as non-type; major parsing change (#2412). 2025-05-18 07:13:37 -04:00
t_type_param.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_type_param.v Fix packed array deduction (#6046) 2025-05-31 07:55:00 -04:00
t_type_param_circ_bad.out Internals: Add RequireDType and check for recursive data types, in prep for future parser. 2025-05-17 20:40:03 -04:00
t_type_param_circ_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_type_param_circ_bad.v
t_type_param_collision.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_typedef.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_typedef.v
t_typedef_array.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_typedef_array.v
t_typedef_circ_bad.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_typedef_circ_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_typedef_circ_bad.v
t_typedef_consistency_0.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_typedef_consistency_0.v
t_typedef_id_bad.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_typedef_id_bad.py Internals: Minor parser reorgs in prep for future pull. No functional change intended. 2024-09-25 20:41:49 -04:00
t_typedef_id_bad.v Internals: Minor parser reorgs in prep for future pull. No functional change intended. 2024-09-25 20:41:49 -04:00
t_typedef_no_bad.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_typedef_no_bad.py Delay parameter type assignment determination until elaboration 2024-09-21 20:27:41 -04:00
t_typedef_no_bad.v Delay parameter type assignment determination until elaboration 2024-09-21 20:27:41 -04:00
t_typedef_package.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_typedef_package.v
t_typedef_param.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_typedef_param.v Support 'parameter type' in hierarchical blocks (#5309) (#5333) 2024-08-21 05:30:59 -04:00
t_typedef_port.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_typedef_port.v
t_typedef_signed.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_typedef_signed.v
t_typedef_unused_bad.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_typedef_unused_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_typedef_unused_bad.v
t_typename.out Fix implicit dtype numbering to be per-module. 2025-05-06 20:39:17 -04:00
t_typename.py Fix implicit dtype numbering to be per-module. 2025-05-06 20:39:17 -04:00
t_typename.v Tests: Add param type to t_typename test 2024-12-01 17:28:13 -05:00
t_typename_min.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_typename_min.v Tests: Fix string !== for other simulators. 2024-10-03 18:14:53 -04:00
t_udp_bad.out Change cell messages to instance to match IEEE 2025-05-03 04:00:47 -04:00
t_udp_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_udp_bad.v
t_udp_bad_comb_trigger.out Support user-defined primitives (UDPs) (#468) (#5807) (#5936) 2025-04-16 06:32:18 -04:00
t_udp_bad_comb_trigger.py Support user-defined primitives (UDPs) (#468) (#5807) (#5936) 2025-04-16 06:32:18 -04:00
t_udp_bad_comb_trigger.v Support user-defined primitives (UDPs) (#468) (#5807) (#5936) 2025-04-16 06:32:18 -04:00
t_udp_bad_first_input.out Support user-defined primitives (UDPs) (#468) (#5807) (#5936) 2025-04-16 06:32:18 -04:00
t_udp_bad_first_input.py Support user-defined primitives (UDPs) (#468) (#5807) (#5936) 2025-04-16 06:32:18 -04:00
t_udp_bad_first_input.v Support user-defined primitives (UDPs) (#468) (#5807) (#5936) 2025-04-16 06:32:18 -04:00
t_udp_bad_illegal_output.out Support user-defined primitives (UDPs) (#468) (#5807) (#5936) 2025-04-16 06:32:18 -04:00
t_udp_bad_illegal_output.py Support user-defined primitives (UDPs) (#468) (#5807) (#5936) 2025-04-16 06:32:18 -04:00
t_udp_bad_illegal_output.v Support user-defined primitives (UDPs) (#468) (#5807) (#5936) 2025-04-16 06:32:18 -04:00
t_udp_bad_input_num.out Support user-defined primitives (UDPs) (#468) (#5807) (#5936) 2025-04-16 06:32:18 -04:00
t_udp_bad_input_num.py Support user-defined primitives (UDPs) (#468) (#5807) (#5936) 2025-04-16 06:32:18 -04:00
t_udp_bad_input_num.v Support user-defined primitives (UDPs) (#468) (#5807) (#5936) 2025-04-16 06:32:18 -04:00
t_udp_bad_multi_output.out Support user-defined primitives (UDPs) (#468) (#5807) (#5936) 2025-04-16 06:32:18 -04:00
t_udp_bad_multi_output.py Support user-defined primitives (UDPs) (#468) (#5807) (#5936) 2025-04-16 06:32:18 -04:00
t_udp_bad_multi_output.v Support user-defined primitives (UDPs) (#468) (#5807) (#5936) 2025-04-16 06:32:18 -04:00
t_udp_noname.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_udp_noname.v
t_udp_param_bad.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_udp_param_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_udp_param_bad.v
t_udp_sequential.py Support user-defined primitives (UDPs) (#468) (#5807) (#5936) 2025-04-16 06:32:18 -04:00
t_udp_sequential.v Test: display fix 2025-04-29 19:23:08 -04:00
t_udp_sequential_bad.out Support user-defined primitives (UDPs) (#468) (#5807) (#5936) 2025-04-16 06:32:18 -04:00
t_udp_sequential_bad.py Support user-defined primitives (UDPs) (#468) (#5807) (#5936) 2025-04-16 06:32:18 -04:00
t_udp_sequential_bad.v Support user-defined primitives (UDPs) (#468) (#5807) (#5936) 2025-04-16 06:32:18 -04:00
t_udp_tableend_bad.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_udp_tableend_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_udp_tableend_bad.v
t_udp_tableeof_bad.py Tests: Move per-command expect= to instead check logfiles 2024-09-19 18:53:22 -04:00
t_udp_tableeof_bad.v
t_unbounded.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_unbounded.v
t_unbounded_bad.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_unbounded_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_unbounded_bad.v
t_unconnected.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_unconnected.v
t_unconnected_bad.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_unconnected_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_unconnected_bad.v
t_unicode.py Tests: Move per-command expect= to instead check logfiles 2024-09-19 18:53:22 -04:00
t_union_hard_bad.out Support soft unions (#5912) (#5932) 2025-04-12 07:35:37 -04:00
t_union_hard_bad.py Apply 'make format' 2025-04-12 11:36:25 +00:00
t_union_hard_bad.v Support soft unions (#5912) (#5932) 2025-04-12 07:35:37 -04:00
t_union_soft.out
t_union_soft.py Support soft unions (#5912) (#5932) 2025-04-12 07:35:37 -04:00
t_union_soft.v Support soft unions (#5912) (#5932) 2025-04-12 07:35:37 -04:00
t_union_unpacked.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_union_unpacked.v
t_uniqueif.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_uniqueif.v
t_uniqueif_fail1.out
t_uniqueif_fail1.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_uniqueif_fail2.out
t_uniqueif_fail2.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_uniqueif_fail3.out
t_uniqueif_fail3.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_uniqueif_fail4.out
t_uniqueif_fail4.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_unopt_array.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_unopt_array.v
t_unopt_array_csplit.py Change `--trace` to `--trace-vcd`. 2025-04-05 10:46:39 -04:00
t_unopt_array_typedef.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_unopt_bound.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_unopt_bound.v
t_unopt_combo.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_unopt_combo.v
t_unopt_combo.vlt
t_unopt_combo_bad.out
t_unopt_combo_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_unopt_combo_isolate.out
t_unopt_combo_isolate.py Tests: Remove file-number hardcoded dependencies. 2024-11-12 21:39:13 -05:00
t_unopt_combo_isolate.vlt
t_unopt_combo_isolate_vlt.out
t_unopt_combo_isolate_vlt.py Tests: Remove file-number hardcoded dependencies. 2024-11-12 21:39:13 -05:00
t_unopt_combo_waive.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_unopt_converge.v
t_unopt_converge_initial.v
t_unopt_converge_initial_run_bad.out
t_unopt_converge_initial_run_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_unopt_converge_ndbg_bad.out
t_unopt_converge_ndbg_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_unopt_converge_print_bad.out
t_unopt_converge_print_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_unopt_converge_run_bad.out
t_unopt_converge_run_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_unopt_converge_unopt_bad.out
t_unopt_converge_unopt_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_unoptflat_simple.v
t_unoptflat_simple_2.v
t_unoptflat_simple_2_bad.out Update UNOPTFLAT warning to suggest isolate_assignments (#5942) 2025-04-18 18:35:36 +09:00
t_unoptflat_simple_2_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_unoptflat_simple_3.v
t_unoptflat_simple_3_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_unoptflat_simple_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_unpack_array_direct_assignment.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_unpack_array_no_expand.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_unpack_array_no_expand.v
t_unpacked_array_order.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_unpacked_array_order.v
t_unpacked_array_p_fmt.out
t_unpacked_array_p_fmt.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_unpacked_array_p_fmt.v
t_unpacked_concat.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_unpacked_concat.v Tests: Add t_interface_hidden 2024-12-03 12:00:56 -05:00
t_unpacked_concat_bad.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_unpacked_concat_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_unpacked_concat_bad.v Tests: Remove unused clk input 2024-10-07 21:44:07 -04:00
t_unpacked_concat_bad2.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_unpacked_concat_bad2.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_unpacked_concat_bad2.v Tests: Remove unused clk input 2024-10-07 21:44:07 -04:00
t_unpacked_concat_bad3.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_unpacked_concat_bad3.py Fix crash with internal assertion on short array initializer (partial #5511) 2024-10-10 07:20:44 -04:00
t_unpacked_concat_bad3.v Fix crash with internal assertion on short array initializer (partial #5511) 2024-10-10 07:20:44 -04:00
t_unpacked_init.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_unpacked_init.v Tests: Add t_interface_hidden 2024-12-03 12:00:56 -05:00
t_unpacked_slice.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_unpacked_slice.v Fix +: and -: unpacked array slicing when array has nonzero low index (#5345) (#5387) 2024-08-20 14:20:48 -04:00
t_unpacked_slice_range.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_unpacked_slice_range.v
t_unpacked_str_init.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_unpacked_str_init.v
t_unpacked_str_init2.out
t_unpacked_str_init2.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_unpacked_str_init2.v
t_unpacked_str_pair.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_unpacked_str_pair.v
t_unpacked_struct_eq.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_unpacked_struct_eq.v
t_unpacked_struct_redef.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_unpacked_struct_redef.v
t_unpacked_struct_sel.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_unpacked_struct_sel.v
t_unpacked_to_packed_param.py Fix unpacked to packed parameter assignment (#6088) (#6081) 2025-06-12 12:47:58 -04:00
t_unpacked_to_packed_param.v Fix unpacked to packed parameter assignment (#6088) (#6081) 2025-06-12 12:47:58 -04:00
t_unpacked_to_queue.py Apply 'make format' 2025-04-15 01:41:13 +00:00
t_unpacked_to_queue.v Support assigning unpacked arrays to queues (#5924) (#5928) 2025-04-14 21:40:17 -04:00
t_unroll_complexcond.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_unroll_complexcond.v
t_unroll_delay.out
t_unroll_delay.py Change `--trace` to `--trace-vcd`. 2025-04-05 10:46:39 -04:00
t_unroll_delay.v
t_unroll_forfor.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_unroll_forfor.v
t_unroll_genf.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_unroll_genf.v
t_unroll_pragma.v
t_unroll_pragma_disable.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_unroll_pragma_full.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_unroll_pragma_none.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_unroll_signed.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_unroll_signed.v
t_unroll_unopt_io.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_unroll_unopt_io.v
t_urandom.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_urandom.v
t_user_type_xassign.py Fix complex user type problem with --x-assign (#5543) 2024-10-18 19:52:25 -04:00
t_user_type_xassign.v Fix complex user type problem with --x-assign (#5543) 2024-10-18 19:52:25 -04:00
t_uvm_all.py Tests: Cleanup as --binary implies --timing. No test functional change. 2025-03-29 15:50:07 -04:00
t_uvm_all.v Tests: Move uvm to subdirectory and add context-sensitive waivers 2024-11-11 20:49:59 -05:00
t_uvm_todo.py Change `--output-groups` to default to value of `--build-jobs`. 2025-02-24 20:38:08 -05:00
t_uvm_todo.v Tests: Move uvm to subdirectory and add context-sensitive waivers 2024-11-11 20:49:59 -05:00
t_uvm_todo.vlt Add `--no-std-waiver` and default reading of standard lint waivers file (#5607). 2024-11-12 22:11:19 -05:00
t_vams_basic.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_vams_basic.v Tests: Remove unused clk input 2024-10-07 21:44:07 -04:00
t_vams_kwd_bad.out Disable symbol from parser: Support redeclaring type as non-type; major parsing change (#2412). 2025-05-18 07:13:37 -04:00
t_vams_kwd_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_vams_kwd_bad.v
t_vams_wreal.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_vams_wreal.v
t_var_assign_landr.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_var_assign_landr.v
t_var_assign_landr_noexpand.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_var_bad_hide.out
t_var_bad_hide.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_var_bad_hide.v
t_var_bad_hide2.out
t_var_bad_hide2.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_var_bad_hide2.v
t_var_bad_hide_docs.out
t_var_bad_hide_docs.py Tests: Fix relocation of extract tests 2025-04-30 23:02:19 -04:00
t_var_bad_hide_docs.v
t_var_bad_sameas.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_var_bad_sameas.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_var_bad_sameas.v
t_var_bad_sv.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_var_bad_sv.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_var_bad_sv.v
t_var_const.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_var_const.v
t_var_const_bad.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_var_const_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_var_const_bad.v
t_var_dotted1.v
t_var_dotted1_inl0.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_var_dotted1_inl1.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_var_dotted1_inl2.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_var_dotted2.v
t_var_dotted2_inl0.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_var_dotted2_inl1.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_var_dotted_dup_bad.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_var_dotted_dup_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_var_dotted_dup_bad.v
t_var_dup2.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_var_dup2.v
t_var_dup2_bad.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_var_dup2_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_var_dup2_bad.v
t_var_dup3.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_var_dup3.v
t_var_dup_bad.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_var_dup_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_var_dup_bad.v
t_var_escape.out
t_var_escape.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_var_escape.v
t_var_extern_method_lifetime.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_var_extern_method_lifetime.v
t_var_in_assign.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_var_in_assign.v
t_var_in_assign_bad.out Support default value on module input (#5358) (#5373) 2024-08-15 10:04:07 -04:00
t_var_in_assign_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_var_in_assign_bad.v
t_var_in_assign_pedantic.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_var_in_fork.py Tests: Cleanup as --binary implies --timing. No test functional change. 2025-03-29 15:50:07 -04:00
t_var_in_fork.v Fix variables declared in fork after taskify (#6126) 2025-06-26 10:28:58 -04:00
t_var_init.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_var_init.v
t_var_life.py Fix reset of automatic function variables (#5747). 2025-02-25 22:48:53 -05:00
t_var_life.v Fix reset of automatic function variables (#5747). 2025-02-25 22:48:53 -05:00
t_var_local.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_var_local.v
t_var_nonamebegin.out
t_var_nonamebegin.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_var_nonamebegin.v
t_var_nonamebegin__log.out
t_var_notfound_bad.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_var_notfound_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_var_notfound_bad.v
t_var_outoforder.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_var_outoforder.v
t_var_overcmp.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_var_overcmp.v
t_var_overwidth_bad.cpp
t_var_overwidth_bad.out
t_var_overwidth_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_var_overwidth_bad.v
t_var_overzero.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_var_overzero.v
t_var_pins_bad.out Tests: Improve warning coverage 2025-05-16 22:32:25 -04:00
t_var_pins_bad.py Tests: Improve warning coverage 2025-05-16 22:32:25 -04:00
t_var_pins_cc.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_var_pins_sc1.py Change `--trace` to `--trace-vcd`. 2025-04-05 10:46:39 -04:00
t_var_pins_sc2.py Change `--trace` to `--trace-vcd`. 2025-04-05 10:46:39 -04:00
t_var_pins_sc32.py Change `--trace` to `--trace-vcd`. 2025-04-05 10:46:39 -04:00
t_var_pins_sc64.py Change `--trace` to `--trace-vcd`. 2025-04-05 10:46:39 -04:00
t_var_pins_sc_biguint.py Change `--trace` to `--trace-vcd`. 2025-04-05 10:46:39 -04:00
t_var_pins_sc_uint.py Change `--trace` to `--trace-vcd`. 2025-04-05 10:46:39 -04:00
t_var_pins_sc_uint_biguint.py Change `--trace` to `--trace-vcd`. 2025-04-05 10:46:39 -04:00
t_var_pins_sc_uint_bool.py Change `--trace` to `--trace-vcd`. 2025-04-05 10:46:39 -04:00
t_var_pins_sc_uint_bool_nomain.py Tests: Fix driver.py not stopping on interrupts (#5752) (#5921) 2025-04-06 19:03:39 -04:00
t_var_pins_scui.py Change `--trace` to `--trace-vcd`. 2025-04-05 10:46:39 -04:00
t_var_pinsizes.cpp
t_var_pinsizes.v
t_var_pinsizes.vlt
t_var_port2_bad.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_var_port2_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_var_port2_bad.v
t_var_port_bad.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_var_port_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_var_port_bad.v
t_var_port_json_only.out Support simple `checker` blocks (#4066). 2025-04-06 23:42:49 -04:00
t_var_port_json_only.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_var_port_json_only.v
t_var_port_xml.out
t_var_port_xml.py Add DEPRECATED warning on `--xml-only` and `--xml-output`. 2025-03-21 21:32:05 -04:00
t_var_port_xml.v
t_var_ref.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_var_ref.v
t_var_ref_bad1.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_var_ref_bad1.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_var_ref_bad1.v
t_var_ref_bad2.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_var_ref_bad2.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_var_ref_bad2.v
t_var_ref_bad3.out
t_var_ref_bad3.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_var_ref_bad3.v
t_var_ref_noinline.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_var_ref_static.out
t_var_ref_static.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_var_ref_static.v
t_var_rsvd.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_var_rsvd.v
t_var_rsvd_bad.out
t_var_rsvd_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_var_rsvd_port.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_var_rsvd_port.v
t_var_sc_bv.cpp Internals: Remove single-statement braces. No functional change. 2025-03-19 22:55:11 -04:00
t_var_sc_bv.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_var_sc_bv.v
t_var_set_link.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_var_set_link.v
t_var_static.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_var_static.v
t_var_static_assign_decl_bad.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_var_static_assign_decl_bad.py Tests: Disable running some lint tests on vltmt 2025-03-29 07:14:45 -04:00
t_var_static_assign_decl_bad.v Add error on instances without parenthesis. 2024-09-22 12:25:35 -04:00
t_var_static_param.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_var_static_param.v
t_var_suggest_bad.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_var_suggest_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_var_suggest_bad.v
t_var_tieout.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_var_tieout.v
t_var_top_struct.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_var_top_struct.v Fix top-level unpacked structure resets (#5221). 2024-07-05 17:22:26 -04:00
t_var_types.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_var_types.v
t_var_types_bad.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_var_types_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_var_types_bad.v
t_var_vec_sel.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_var_vec_sel.v
t_var_xref_bad.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_var_xref_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_var_xref_bad.v
t_var_xref_gen.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_var_xref_gen.v
t_varref_scope_in_interface.py Fix can't locate scope error in interface task delayed assignment (#5462) (#5568) 2024-11-02 09:42:57 -04:00
t_varref_scope_in_interface.v Fix can't locate scope error in interface task delayed assignment (#5462) (#5568) 2024-11-02 09:42:57 -04:00
t_verilated_all.py Change `--trace` to `--trace-vcd`. 2025-04-05 10:46:39 -04:00
t_verilated_all.v
t_verilated_all_newest.py Change `--trace` to `--trace-vcd`. 2025-04-05 10:46:39 -04:00
t_verilated_all_oldest.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_verilated_debug.out
t_verilated_debug.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_verilated_debug.v
t_verilated_header.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_verilated_header.v
t_verilated_threaded.py Tests: Cleanup some .cpp paths. No test functional change indended. 2025-04-25 20:57:11 -04:00
t_virtual_interface_delayed.py Tests: Add t_virtual_interface_delayed (#4322) 2025-04-05 15:31:17 -04:00
t_virtual_interface_delayed.v Tests: Add t_virtual_interface_delayed (#4322) 2025-04-05 15:31:17 -04:00
t_virtual_interface_method.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_virtual_interface_method.v
t_virtual_interface_method_bad.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_virtual_interface_method_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_virtual_interface_method_bad.v
t_virtual_interface_pkg.py Fix recursive error on virtual interfaces (#5854). 2025-03-12 17:57:02 -04:00
t_virtual_interface_pkg.v Fix recursive error on virtual interfaces (#5854). 2025-03-12 17:57:02 -04:00
t_vlcov_data_a.dat
t_vlcov_data_b.dat
t_vlcov_data_c.dat
t_vlcov_data_d.dat
t_vlcov_data_e.dat Add filtering type option in verilator_coverage (#6030) 2025-05-22 02:42:09 -07:00
t_vlcov_data_f.dat Add filtering type option in verilator_coverage (#6030) 2025-05-22 02:42:09 -07:00
t_vlcov_debugi.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_vlcov_flag_invalid_bad.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_vlcov_flag_invalid_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_vlcov_info.info.out Change to use maximum for cover point aggregation (#5402) 2024-09-09 14:20:18 -04:00
t_vlcov_info.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_vlcov_merge.out
t_vlcov_merge.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_vlcov_nfound_bad.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_vlcov_nfound_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_vlcov_opt_branch.info.out Add filtering type option in verilator_coverage (#6030) 2025-05-22 02:42:09 -07:00
t_vlcov_opt_branch.py Add filtering type option in verilator_coverage (#6030) 2025-05-22 02:42:09 -07:00
t_vlcov_opt_expr.info.out Add filtering type option in verilator_coverage (#6030) 2025-05-22 02:42:09 -07:00
t_vlcov_opt_expr.py Add filtering type option in verilator_coverage (#6030) 2025-05-22 02:42:09 -07:00
t_vlcov_opt_line.info.out Add filtering type option in verilator_coverage (#6030) 2025-05-22 02:42:09 -07:00
t_vlcov_opt_line.py Add filtering type option in verilator_coverage (#6030) 2025-05-22 02:42:09 -07:00
t_vlcov_opt_toggle.info.out Add filtering type option in verilator_coverage (#6030) 2025-05-22 02:42:09 -07:00
t_vlcov_opt_toggle.py Add filtering type option in verilator_coverage (#6030) 2025-05-22 02:42:09 -07:00
t_vlcov_opt_user.info.out Add filtering type option in verilator_coverage (#6030) 2025-05-22 02:42:09 -07:00
t_vlcov_opt_user.py Add filtering type option in verilator_coverage (#6030) 2025-05-22 02:42:09 -07:00
t_vlcov_opt_wild.info.out Add filtering type option in verilator_coverage (#6030) 2025-05-22 02:42:09 -07:00
t_vlcov_opt_wild.py Add filtering type option in verilator_coverage (#6030) 2025-05-22 02:42:09 -07:00
t_vlcov_rank.out
t_vlcov_rank.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_vlcov_rewrite.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_vlcov_unlink.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_vlprocess_missing.py Fix missing VlProcess handle in coroutines with splits (#5623) (#5650) 2024-12-02 05:43:26 -05:00
t_vlt_match_contents.out Add `lint_off --contents` in configuration files. (#5606) 2024-11-12 20:21:16 -05:00
t_vlt_match_contents.py Add `lint_off --contents` in configuration files. (#5606) 2024-11-12 20:21:16 -05:00
t_vlt_match_contents.v Add `lint_off --contents` in configuration files. (#5606) 2024-11-12 20:21:16 -05:00
t_vlt_match_contents.vlt Add `lint_off --contents` in configuration files. (#5606) 2024-11-12 20:21:16 -05:00
t_vlt_match_error.v Fix lint_off on Errors (#5351) (#5363) 2024-08-11 21:04:46 +02:00
t_vlt_match_error.vlt Fix lint_off on Errors (#5351) (#5363) 2024-08-11 21:04:46 +02:00
t_vlt_match_error_1.out Remove symbol table from parser: Support redeclaring type as non-type; major parsing change (#2412). 2025-05-18 07:13:37 -04:00
t_vlt_match_error_1.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_vlt_match_error_2.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_vlt_match_error_2.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_vlt_match_error_3.out Fix lint_off on Errors (#5351) (#5363) 2024-08-11 21:04:46 +02:00
t_vlt_match_error_3.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_vlt_syntax_bad.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_vlt_syntax_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_vlt_syntax_bad.v
t_vlt_syntax_bad.vlt
t_vlt_timing.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_vlt_timing.vlt
t_vlt_warn.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_vlt_warn.v
t_vlt_warn.vlt
t_vlt_warn_bad.out
t_vlt_warn_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_vlt_warn_bad.vlt
t_vlt_warn_ecode_bad.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_vlt_warn_ecode_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_vlt_warn_ecode_bad.vlt
t_vlt_warn_file_bad.out
t_vlt_warn_file_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_vlt_warn_file_bad.v
t_vlt_warn_file_bad.vlt
t_vlt_warn_file_bad_b.vh
t_vpi_cb_iter.cpp
t_vpi_cb_iter.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_vpi_cb_iter.v
t_vpi_const_type.cpp Improve VPI write errors (#5712) 2025-01-06 17:56:18 -05:00
t_vpi_const_type.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_vpi_const_type.v Improve VPI write errors (#5712) 2025-01-06 17:56:18 -05:00
t_vpi_dump.cpp Internals: Remove single-statement braces. No functional change. 2025-03-19 22:55:11 -04:00
t_vpi_dump.iv.out
t_vpi_dump.out Fix vpiDefName issues with non-inlined scopes and dpi conflicts (#5732) 2025-01-16 15:02:36 -05:00
t_vpi_dump.py Tests: Cleanup some .cpp paths. No test functional change indended. 2025-04-25 20:57:11 -04:00
t_vpi_dump.v Fix vpiDefName issues with non-inlined scopes and dpi conflicts (#5732) 2025-01-16 15:02:36 -05:00
t_vpi_dump_missing_scopes.iv.out
t_vpi_dump_missing_scopes.out Fix vpiDefName issues with non-inlined scopes and dpi conflicts (#5732) 2025-01-16 15:02:36 -05:00
t_vpi_dump_missing_scopes.py Tests: Cleanup some .cpp paths. No test functional change indended. 2025-04-25 20:57:11 -04:00
t_vpi_dump_missing_scopes.v
t_vpi_dump_no_inline.py Tests: Cleanup some .cpp paths. No test functional change indended. 2025-04-25 20:57:11 -04:00
t_vpi_escape.cpp Support vpiDefName (#5572) 2024-11-12 11:28:39 -05:00
t_vpi_escape.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_vpi_escape.v Fix duplicate scope identifiers decoding (#5584) 2024-11-04 06:06:15 -08:00
t_vpi_finish.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_vpi_finish.v
t_vpi_finish_c.cpp
t_vpi_get.cpp Apply 'make format' 2025-01-10 00:05:16 +00:00
t_vpi_get.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_vpi_get.v
t_vpi_get_public_rw_switch.py Tests: Cleanup some .cpp paths. No test functional change indended. 2025-04-25 20:57:11 -04:00
t_vpi_get_value_array.cpp Fix clang 20 warnings 2025-03-27 19:01:25 -04:00
t_vpi_get_value_array.py Support VPI array accessors (#5612) 2025-02-07 19:06:46 -05:00
t_vpi_get_value_array.v Support VPI array accessors (#5612) 2025-02-07 19:06:46 -05:00
t_vpi_memory.cpp Support multidimensional array access via VPI (#2812) (#5573) 2025-01-09 19:04:26 -05:00
t_vpi_memory.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_vpi_memory.v
t_vpi_module.cpp Tests: Reduce test_regress VPI copypasta (#5694) (#5693) 2024-12-19 16:29:16 -05:00
t_vpi_module.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_vpi_module.v
t_vpi_module_dpi.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_vpi_module_empty.cpp Tests: Reduce test_regress VPI copypasta (#5694) (#5693) 2024-12-19 16:29:16 -05:00
t_vpi_module_empty.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_vpi_module_empty.v
t_vpi_multidim.cpp Tests: Fix Ubuntu24.04 clang test issues, and enable action (#5824) 2025-03-02 16:53:59 -05:00
t_vpi_multidim.py Support multidimensional array access via VPI (#2812) (#5573) 2025-01-09 19:04:26 -05:00
t_vpi_multidim.v Support multidimensional array access via VPI (#2812) (#5573) 2025-01-09 19:04:26 -05:00
t_vpi_onetime_cbs.cpp Internals: Remove single-statement braces. No functional change. 2025-03-19 22:55:11 -04:00
t_vpi_onetime_cbs.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_vpi_onetime_cbs.v
t_vpi_package.cpp Fix packages with `--public-depth 1` (#5708) 2025-01-06 15:21:32 -05:00
t_vpi_package.py Fix packages with `--public-depth 1` (#5708) 2025-01-06 15:21:32 -05:00
t_vpi_package.v Fix packages with `--public-depth 1` (#5708) 2025-01-06 15:21:32 -05:00
t_vpi_param.cpp Tests: Reduce test_regress VPI copypasta (#5694) (#5693) 2024-12-19 16:29:16 -05:00
t_vpi_param.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_vpi_param.v
t_vpi_public_depth.cpp Add `--public-ignore` to ignore public metacomments (#7819) 2025-01-11 12:29:39 -05:00
t_vpi_public_depth.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_vpi_public_depth.v Add `--public-ignore` to ignore public metacomments (#7819) 2025-01-11 12:29:39 -05:00
t_vpi_public_depth_off.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_vpi_public_off.py Add `--public-ignore` to ignore public metacomments (#7819) 2025-01-11 12:29:39 -05:00
t_vpi_public_params.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_vpi_public_params.v
t_vpi_put_value_array.cpp Fix clang 20 warnings 2025-03-27 19:01:25 -04:00
t_vpi_put_value_array.py Support VPI array accessors (#5612) 2025-02-07 19:06:46 -05:00
t_vpi_put_value_array.v Support VPI array accessors (#5612) 2025-02-07 19:06:46 -05:00
t_vpi_release_dup_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_vpi_release_dup_bad.v
t_vpi_release_dup_bad_c.cpp
t_vpi_repetitive_cbs.cpp Internals: Remove single-statement braces. No functional change. 2025-03-19 22:55:11 -04:00
t_vpi_repetitive_cbs.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_vpi_repetitive_cbs.v
t_vpi_sc.cpp
t_vpi_sc.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_vpi_sc.v
t_vpi_stop_bad.out
t_vpi_stop_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_vpi_stop_bad.v
t_vpi_stop_bad_c.cpp
t_vpi_time_cb.cpp
t_vpi_time_cb.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_vpi_time_cb.v
t_vpi_time_cb_c.cpp Tests: Fix ubuntu24.04-arm issues 2025-03-22 16:55:53 -04:00
t_vpi_unimpl.cpp Support VPI array accessors (#5612) 2025-02-07 19:06:46 -05:00
t_vpi_unimpl.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_vpi_unimpl.v
t_vpi_var.cpp Support multidimensional array access via VPI (#2812) (#5573) 2025-01-09 19:04:26 -05:00
t_vpi_var.py Fix VPI + SYMRSVDWORD intersection (#5686) 2024-12-19 15:15:28 -05:00
t_vpi_var.v Improve VPI write errors (#5712) 2025-01-06 17:56:18 -05:00
t_vpi_var2.py Fix VPI + SYMRSVDWORD intersection (#5686) 2024-12-19 15:15:28 -05:00
t_vpi_var2.v Improve VPI write errors (#5712) 2025-01-06 17:56:18 -05:00
t_vpi_var3.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_vpi_var3.v Fix VPI + SYMRSVDWORD intersection (#5686) 2024-12-19 15:15:28 -05:00
t_vpi_zero_time_cb.cpp
t_vpi_zero_time_cb.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_vpi_zero_time_cb.v
t_vthread.py Change `--trace` to `--trace-vcd`. 2025-04-05 10:46:39 -04:00
t_wait.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_wait.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_wait.v
t_wait_const.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_wait_const.v
t_wait_fork.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_wait_fork.v
t_wait_no_triggered_bad.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_wait_no_triggered_bad.py Add error on `wait` with missing `.triggered`. (#4457) 2024-11-05 01:22:56 -05:00
t_wait_no_triggered_bad.v Add error on `wait` with missing `.triggered`. (#4457) 2024-11-05 01:22:56 -05:00
t_wait_order.out
t_wait_order.py Tests: Cleanup as --binary implies --timing. No test functional change. 2025-03-29 15:50:07 -04:00
t_wait_order.v
t_wait_timing.py Tests: Cleanup as --binary implies --timing. No test functional change. 2025-03-29 15:50:07 -04:00
t_waiveroutput.out Add `--waiver-multiline` for context-sensitive `--waiver-output`. 2024-11-11 20:00:26 -05:00
t_waiveroutput.py Add `--waiver-multiline` for context-sensitive `--waiver-output`. 2024-11-11 20:00:26 -05:00
t_waiveroutput.v
t_waiveroutput.vlt
t_waiveroutput_allgood.out Add `--waiver-multiline` for context-sensitive `--waiver-output`. 2024-11-11 20:00:26 -05:00
t_waiveroutput_allgood.py Add `--waiver-multiline` for context-sensitive `--waiver-output`. 2024-11-11 20:00:26 -05:00
t_waiveroutput_multiline.out Add `--waiver-multiline` for context-sensitive `--waiver-output`. 2024-11-11 20:00:26 -05:00
t_waiveroutput_multiline.py Add `--waiver-multiline` for context-sensitive `--waiver-output`. 2024-11-11 20:00:26 -05:00
t_waiveroutput_roundtrip.py Add `--waiver-multiline` for context-sensitive `--waiver-output`. 2024-11-11 20:00:26 -05:00
t_waiveroutput_roundtrip.v Add `--waiver-multiline` for context-sensitive `--waiver-output`. 2024-11-11 20:00:26 -05:00
t_while_cond_is_stmt.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_while_cond_is_stmt.v
t_while_timing_control.py Tests: Cleanup as --binary implies --timing. No test functional change. 2025-03-29 15:50:07 -04:00
t_while_timing_control.v
t_wire_beh1364_bad.out
t_wire_beh1364_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_wire_beh1364_bad.v
t_wire_beh1800_bad.out
t_wire_beh1800_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_wire_beh1800_bad.v
t_wire_behp1364_bad.out
t_wire_behp1364_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_wire_behp1364_bad.v
t_wire_behp1800_bad.out
t_wire_behp1800_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_wire_behp1800_bad.v
t_wire_self_bad.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_wire_self_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_wire_self_bad.v
t_wire_trireg_unsup.out Tests: Improve warning coverage 2025-05-17 16:28:09 -04:00
t_wire_trireg_unsup.py Tests: Improve warning coverage 2025-05-17 16:28:09 -04:00
t_wire_trireg_unsup.v Tests: Improve warning coverage 2025-05-17 16:28:09 -04:00
t_wire_types.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_wire_types.v
t_wired_net_test.py Support for wired nets, `wor`/`trior`/`wand`/`triand`. (#5496) 2024-10-09 17:53:46 -04:00
t_wired_net_test.v Support for wired nets, `wor`/`trior`/`wand`/`triand`. (#5496) 2024-10-09 17:53:46 -04:00
t_with.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_with.v
t_with_suggest_bad.out Change error messages to more often suggest documentation 2025-04-05 17:10:44 -04:00
t_with_suggest_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_with_suggest_bad.v
t_wrapper_clone.cpp Internals: Remove single-statement braces. No functional change. 2025-03-19 22:55:11 -04:00
t_wrapper_clone.out
t_wrapper_clone.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_wrapper_clone.v
t_wrapper_context.cpp
t_wrapper_context.py Tests: Cleanup some .out filenames. No test coverage change. 2025-04-05 13:46:22 -04:00
t_wrapper_context.v
t_wrapper_context__top0.dat.out Add filtering type option in verilator_coverage (#6030) 2025-05-22 02:42:09 -07:00
t_wrapper_context__top1.dat.out Add filtering type option in verilator_coverage (#6030) 2025-05-22 02:42:09 -07:00
t_wrapper_context__trace0.vcd.out Tests: Cleanup some .out filenames. No test coverage change. 2025-04-05 13:46:22 -04:00
t_wrapper_context__trace1.vcd.out Tests: Cleanup some .out filenames. No test coverage change. 2025-04-05 13:46:22 -04:00
t_wrapper_context_fst.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_wrapper_context_seq.py Change `--trace` to `--trace-vcd`. 2025-04-05 10:46:39 -04:00
t_wrapper_del_context_bad.cpp
t_wrapper_del_context_bad.out
t_wrapper_del_context_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_wrapper_del_context_bad.v
t_wrapper_legacy.cpp Add empty veriuser.h for legacy compatibility. 2025-03-04 21:25:28 -05:00
t_wrapper_legacy.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_wrapper_legacy.v
t_wrapper_legacy_time64.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_wrapper_legacy_timed.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_wrapper_reuse_context_bad.cpp Add assertion on reusing VerilatedContext (#5167). 2024-06-11 19:38:58 -04:00
t_wrapper_reuse_context_bad.out Tests: Fix test stability (#5167 update). 2024-06-11 20:55:01 -04:00
t_wrapper_reuse_context_bad.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_wrapper_reuse_context_bad.v Add assertion on reusing VerilatedContext (#5167). 2024-06-11 19:38:58 -04:00
t_x_assign.cpp Fix x assign vs init randomization (#6075) 2025-06-09 17:59:01 -04:00
t_x_assign.v Fix `--x-assign` to be independent from `+verilator+rand+reset` (#5214) 2024-07-14 17:04:00 -04:00
t_x_assign_0.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_x_assign_1.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_x_assign_unique_0.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_x_assign_unique_1.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_x_rand_mt_stability.out Fix --x-initial and --x-assign random stability (#2662) (#5958) (#6018) (#6025) 2025-05-27 09:31:55 -04:00
t_x_rand_mt_stability.py Fix --x-initial and --x-assign random stability (#2662) (#5958) (#6018) (#6025) 2025-05-27 09:31:55 -04:00
t_x_rand_mt_stability_add.out Fix --x-initial and --x-assign random stability (#2662) (#5958) (#6018) (#6025) 2025-05-27 09:31:55 -04:00
t_x_rand_mt_stability_add.py Fix --x-initial and --x-assign random stability (#2662) (#5958) (#6018) (#6025) 2025-05-27 09:31:55 -04:00
t_x_rand_mt_stability_add_trace.out Fix --x-initial and --x-assign random stability (#2662) (#5958) (#6018) (#6025) 2025-05-27 09:31:55 -04:00
t_x_rand_mt_stability_add_trace.py Fix --x-initial and --x-assign random stability (#2662) (#5958) (#6018) (#6025) 2025-05-27 09:31:55 -04:00
t_x_rand_mt_stability_trace.out Fix --x-initial and --x-assign random stability (#2662) (#5958) (#6018) (#6025) 2025-05-27 09:31:55 -04:00
t_x_rand_mt_stability_trace.py Fix --x-initial and --x-assign random stability (#2662) (#5958) (#6018) (#6025) 2025-05-27 09:31:55 -04:00
t_x_rand_mt_stability_zeros.out Fix x assign vs init randomization (#6075) 2025-06-09 17:59:01 -04:00
t_x_rand_mt_stability_zeros.py Fix --x-initial and --x-assign random stability (#2662) (#5958) (#6018) (#6025) 2025-05-27 09:31:55 -04:00
t_x_rand_stability.out Fix --x-initial and --x-assign random stability (#2662) (#5958) (#6018) (#6025) 2025-05-27 09:31:55 -04:00
t_x_rand_stability.py Fix --x-initial and --x-assign random stability (#2662) (#5958) (#6018) (#6025) 2025-05-27 09:31:55 -04:00
t_x_rand_stability.v Fix --x-initial and --x-assign random stability (#2662) (#5958) (#6018) (#6025) 2025-05-27 09:31:55 -04:00
t_x_rand_stability_add.out Fix --x-initial and --x-assign random stability (#2662) (#5958) (#6018) (#6025) 2025-05-27 09:31:55 -04:00
t_x_rand_stability_add.py Fix --x-initial and --x-assign random stability (#2662) (#5958) (#6018) (#6025) 2025-05-27 09:31:55 -04:00
t_x_rand_stability_add_trace.out Fix --x-initial and --x-assign random stability (#2662) (#5958) (#6018) (#6025) 2025-05-27 09:31:55 -04:00
t_x_rand_stability_add_trace.py Fix --x-initial and --x-assign random stability (#2662) (#5958) (#6018) (#6025) 2025-05-27 09:31:55 -04:00
t_x_rand_stability_trace.out Fix --x-initial and --x-assign random stability (#2662) (#5958) (#6018) (#6025) 2025-05-27 09:31:55 -04:00
t_x_rand_stability_trace.py Fix --x-initial and --x-assign random stability (#2662) (#5958) (#6018) (#6025) 2025-05-27 09:31:55 -04:00
t_x_rand_stability_zeros.out Fix x assign vs init randomization (#6075) 2025-06-09 17:59:01 -04:00
t_x_rand_stability_zeros.py Fix --x-initial and --x-assign random stability (#2662) (#5958) (#6018) (#6025) 2025-05-27 09:31:55 -04:00
t_xml_begin_hier.out
t_xml_begin_hier.py Add DEPRECATED warning on `--xml-only` and `--xml-output`. 2025-03-21 21:32:05 -04:00
t_xml_begin_hier.v
t_xml_debugcheck.out Fix change detection at time 0 (#5864) 2025-03-18 13:34:04 +00:00
t_xml_debugcheck.py Convert test driver to Python (#5427) 2024-09-08 13:00:03 -04:00
t_xml_deprecated_bad.out Add DEPRECATED warning on `--xml-only` and `--xml-output`. 2025-03-21 21:32:05 -04:00
t_xml_deprecated_bad.py Add DEPRECATED warning on `--xml-only` and `--xml-output`. 2025-03-21 21:32:05 -04:00
t_xml_first.out
t_xml_first.py Add DEPRECATED warning on `--xml-only` and `--xml-output`. 2025-03-21 21:32:05 -04:00
t_xml_first.v
t_xml_flat.out
t_xml_flat.py Add DEPRECATED warning on `--xml-only` and `--xml-output`. 2025-03-21 21:32:05 -04:00
t_xml_flat_no_inline_mod.out
t_xml_flat_no_inline_mod.py Add DEPRECATED warning on `--xml-only` and `--xml-output`. 2025-03-21 21:32:05 -04:00
t_xml_flat_no_inline_mod.v
t_xml_flat_pub_mod.out
t_xml_flat_pub_mod.py Add DEPRECATED warning on `--xml-only` and `--xml-output`. 2025-03-21 21:32:05 -04:00
t_xml_flat_pub_mod.v
t_xml_flat_vlvbound.out Internals: Replace unnecessary AstSel::widthp() child node with const in node (#6117) 2025-06-24 11:59:09 -04:00
t_xml_flat_vlvbound.py Add DEPRECATED warning on `--xml-only` and `--xml-output`. 2025-03-21 21:32:05 -04:00
t_xml_flat_vlvbound.v
t_xml_output.out
t_xml_output.py Add DEPRECATED warning on `--xml-only` and `--xml-output`. 2025-03-21 21:32:05 -04:00
t_xml_output.v
t_xml_tag.out Improve V3EmitV for interfaces (#5796) 2025-02-21 16:49:14 -05:00
t_xml_tag.py Add DEPRECATED warning on `--xml-only` and `--xml-output`. 2025-03-21 21:32:05 -04:00
t_xml_tag.v
vltest_bootstrap.py Tests: Fix --gdb with one test (#5466) 2024-09-19 17:06:32 -04:00