16 lines
418 B
Python
16 lines
418 B
Python
|
|
#!/usr/bin/env python3
|
||
|
|
# DESCRIPTION: Verilator: Verilog Test driver/expect definition
|
||
|
|
#
|
||
|
|
# This file ONLY is placed under the Creative Commons Public Domain, for
|
||
|
|
# any use, without warranty, 2025 by Wilson Snyder.
|
||
|
|
# SPDX-FileCopyrightText: 2025 Wilson Snyder
|
||
|
|
# SPDX-License-Identifier: CC0-1.0
|
||
|
|
|
||
|
|
import vltest_bootstrap
|
||
|
|
|
||
|
|
test.scenarios('vlt')
|
||
|
|
|
||
|
|
test.lint(expect_filename=test.golden_filename, fails=True)
|
||
|
|
|
||
|
|
test.passes()
|