1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49
|
#!/usr/bin/env perl
if (!$::Driver) { use FindBin; exec("$FindBin::Bin/bootstrap.pl", @ARGV, $0); die; }
# DESCRIPTION: Verilator: Verilog Test driver/expect definition
#
# 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
# Lesser General Public License Version 3 or the Perl Artistic License
# Version 2.0.
# SPDX-License-Identifier: LGPL-3.0-only OR Artistic-2.0
scenarios(dist => 1);
foreach my $prog (
# See also t_flag_help.pl
"../bin/verilator",
"../bin/verilator_coverage",
#"../bin/verilator_difftree",
#"../bin/verilator_gantt",
#"../bin/verilator_profcfunc",
) {
run(fails => 0,
cmd => ["perl", $prog,
"--version"],
tee => $self->{verbose},
logfile => "$Self->{obj_dir}/t_help.log",
expect => qr/^Verilator/,
verilator_run => 1,
);
run(fails => 0,
cmd => ["perl", $prog,
"-V"],
tee => $self->{verbose},
logfile => "$Self->{obj_dir}/t_help.log",
expect => qr/^Verilator/,
verilator_run => 1,
);
run(fails => 0,
cmd => ["perl", $prog,
"-V"],
logfile => "$Self->{obj_dir}/t_help.log",
expect => qr/^Verilator/,
verilator_run => 1,
);
}
ok(1);
1;
|