[#72179] add t_trace_array_saif test

This commit is contained in:
Mateusz Gancarz 2025-02-14 14:51:11 +01:00
parent 2c5b8cd5c4
commit 78103bb803
2 changed files with 41 additions and 0 deletions

View File

@ -0,0 +1,20 @@
(SAIFILE
(SAIFVERSION "2.0")
(DIRECTION "backward")
(DESIGN "foo")
(PROGRAM_NAME "Verilator")
(VERSION "5.032")
(DIVIDER .)
(TIMESCALE 1ps)
(DURATION 60)
(INSTANCE foo (NET
(d[1] (T0 30) (T1 30) (TZ 0) (TX 0) (TB 0) (TC 1))
(d[2] (T0 40) (T1 20) (TZ 0) (TX 0) (TB 0) (TC 1))
(d[3] (T0 50) (T1 10) (TZ 0) (TX 0) (TB 0) (TC 1))
(d[4] (T0 60) (T1 0) (TZ 0) (TX 0) (TB 0) (TC 1))
(d[32] (T0 20) (T1 40) (TZ 0) (TX 0) (TB 0) (TC 1))
(cyc[0] (T0 30) (T1 30) (TZ 0) (TX 0) (TB 0) (TC 6))
(cyc[1] (T0 40) (T1 20) (TZ 0) (TX 0) (TB 0) (TC 3))
(cyc[2] (T0 40) (T1 20) (TZ 0) (TX 0) (TB 0) (TC 1))
(clk (T0 35) (T1 25) (TZ 0) (TX 0) (TB 0) (TC 11))
)))

View File

@ -0,0 +1,21 @@
#!/usr/bin/env python3
# DESCRIPTION: Verilator: Verilog Test driver/expect definition
#
# Copyright 2024 by Wilson Snyder. This program is free software; you
# can redistribute it and/or modify it under the terms of either the GNU
# Lesser General Public License Version 3 or the Perl Artistic License
# Version 2.0.
# SPDX-License-Identifier: LGPL-3.0-only OR Artistic-2.0
import vltest_bootstrap
test.scenarios('vlt')
test.top_filename = "t/t_trace_array.v"
test.compile(verilator_flags2=['--cc --trace --trace-structs'])
test.execute()
test.saif_identical(test.trace_filename, test.golden_filename)
test.passes()