2020-05-05 00:42:15 +02:00
|
|
|
#!/usr/bin/env perl
|
2008-09-23 16:02:31 +02:00
|
|
|
if (!$::Driver) { use FindBin; exec("$FindBin::Bin/bootstrap.pl", @ARGV, $0); die; }
|
2007-04-19 16:21:37 +02:00
|
|
|
# DESCRIPTION: Verilator: Verilog Test driver/expect definition
|
|
|
|
|
#
|
2020-03-21 16:24:24 +01:00
|
|
|
# Copyright 2003-2009 by Wilson Snyder. This program is free software; you
|
|
|
|
|
# can redistribute it and/or modify it under the terms of either the GNU
|
2009-05-04 23:07:57 +02:00
|
|
|
# Lesser General Public License Version 3 or the Perl Artistic License
|
|
|
|
|
# Version 2.0.
|
2020-03-21 16:24:24 +01:00
|
|
|
# SPDX-License-Identifier: LGPL-3.0-only OR Artistic-2.0
|
2007-04-19 16:21:37 +02:00
|
|
|
|
2019-06-13 03:05:02 +02:00
|
|
|
scenarios(vlt => 1);
|
2011-10-13 05:03:53 +02:00
|
|
|
|
2019-06-13 03:05:02 +02:00
|
|
|
lint(
|
2018-05-07 04:39:18 +02:00
|
|
|
fails => 1,
|
2019-05-03 00:45:32 +02:00
|
|
|
expect_filename => $Self->{golden_filename},
|
2011-10-13 05:03:53 +02:00
|
|
|
);
|
2007-04-19 16:21:37 +02:00
|
|
|
|
|
|
|
|
ok(1);
|
|
|
|
|
1;
|