forked from github/verilator
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;
|