1#!/usr/bin/env perl
2if (!$::Driver) { use FindBin; exec("$FindBin::Bin/bootstrap.pl", @ARGV, $0); die; }
3# DESCRIPTION: Verilator: Verilog Test driver/expect definition
4#
5# Copyright 2019 by Todd Strader. This program is free software; you
6# can redistribute it and/or modify it under the terms of either the GNU
7# Lesser General Public License Version 3 or the Perl Artistic License
8# Version 2.0.
9# SPDX-License-Identifier: LGPL-3.0-only OR Artistic-2.0
10
11scenarios(vlt => 1);
12
13compile (
14    verilator_flags2 => ["--protect-lib",
15                         "secret",
16                         "--protect-key",
17                         "SECRET_FAKE_KEY"],
18    verilator_make_gcc => 0,
19    verilator_make_gmake => 0,
20    make_main => 0,
21    make_top_shell => 0,
22    );
23
24run(cmd=>[$ENV{MAKE},
25          "-C",
26          "$Self->{obj_dir}",
27          "-f",
28          "V$Self->{name}.mk"]);
29
30ok(1);
311;
32