mirror of
https://github.com/verilator/verilator.git
synced 2025-01-15 02:54:03 +00:00
14 lines
275 B
Perl
14 lines
275 B
Perl
|
#!/usr/bin/env perl
|
||
|
if (!$::Driver) { use FindBin; exec("$FindBin::Bin/bootstrap.pl", @ARGV, $0); die; }
|
||
|
# DESCRIPTION: Verilator: Verilog Test driver/expect definition
|
||
|
#
|
||
|
# SPDX-License-Identifier: LGPL-3.0-only OR Artistic-2.0
|
||
|
|
||
|
scenarios(vlt => 1);
|
||
|
|
||
|
lint(
|
||
|
);
|
||
|
|
||
|
ok(1);
|
||
|
1;
|