mirror of
https://github.com/verilator/verilator.git
synced 2025-04-05 04:02:37 +00:00
Tests: Call driver's run instead of private _run.
This commit is contained in:
parent
3f14e649b5
commit
16234bb713
@ -908,6 +908,10 @@ sub sc {
|
||||
|
||||
#----------------------------------------------------------------------
|
||||
|
||||
sub run {
|
||||
my $self = (ref $_[0]? shift : $Self);
|
||||
$self->_run(@_);
|
||||
}
|
||||
sub _run {
|
||||
my $self = (ref $_[0]? shift : $Self);
|
||||
my %param = (tee=>1,
|
||||
|
@ -28,7 +28,7 @@ if ($Self->{nc}) {
|
||||
$fh->printf("report_html -both -instance * > $Self->{obj_dir}/${name}__nccover.html\n");
|
||||
$fh->close;
|
||||
}
|
||||
$Self->_run (logfile=>"$Self->{obj_dir}/${name}__nccover.log",
|
||||
$Self->run(logfile=>"$Self->{obj_dir}/${name}__nccover.log",
|
||||
tee=>0,
|
||||
cmd=>[($ENV{VERILATOR_ICCR}||'iccr'),
|
||||
"-test ${name} ${cf}"]);
|
||||
|
@ -32,10 +32,10 @@ $gmon_path = $_ foreach (glob "$Self->{obj_dir}/gmon.out.*");
|
||||
$gmon_path or $Self->error("Profiler did not create a gmon.out");
|
||||
(my $gmon_base = $gmon_path) =~ s!.*[/\\]!!;
|
||||
|
||||
$Self->_run(cmd=>["cd $Self->{obj_dir} && gprof $Self->{VM_PREFIX} $gmon_base > gprof.out"],
|
||||
$Self->run(cmd=>["cd $Self->{obj_dir} && gprof $Self->{VM_PREFIX} $gmon_base > gprof.out"],
|
||||
check_finished=>0);
|
||||
|
||||
$Self->_run(cmd=>["cd $Self->{obj_dir} && $ENV{VERILATOR_ROOT}/bin/verilator_profcfunc gprof.out > cfuncs.out"],
|
||||
$Self->run(cmd=>["cd $Self->{obj_dir} && $ENV{VERILATOR_ROOT}/bin/verilator_profcfunc gprof.out > cfuncs.out"],
|
||||
check_finished=>0);
|
||||
|
||||
file_grep ("$Self->{obj_dir}/cfuncs.out", qr/Overall summary by/);
|
||||
|
@ -20,7 +20,7 @@ execute (
|
||||
# Read the input .v file and do any CHECK_COVER requests
|
||||
inline_checks();
|
||||
|
||||
$Self->_run(cmd=>["../bin/verilator_coverage",
|
||||
$Self->run(cmd=>["../bin/verilator_coverage",
|
||||
"--annotate", "$Self->{obj_dir}/annotated",
|
||||
"$Self->{obj_dir}/coverage.dat",
|
||||
],
|
||||
|
@ -18,11 +18,11 @@ if (!-r "$root/.git") {
|
||||
my $cwd = getcwd();
|
||||
my $destdir = "$cwd/".$Self->{obj_dir};
|
||||
# Start clean
|
||||
$Self->_run(cmd=>["rm -rf $destdir && mkdir -p $destdir"],
|
||||
$Self->run(cmd=>["rm -rf $destdir && mkdir -p $destdir"],
|
||||
check_finished=>0);
|
||||
# Install into temp area
|
||||
print "Install...\n";
|
||||
$Self->_run (cmd=>["cd $root && make DESTDIR=$destdir install-all"],
|
||||
$Self->run(cmd=>["cd $root && make DESTDIR=$destdir install-all"],
|
||||
check_finished=>0);
|
||||
|
||||
# Check we can run a test
|
||||
@ -32,7 +32,7 @@ if (!-r "$root/.git") {
|
||||
|
||||
# Uninstall
|
||||
print "Uninstall...\n";
|
||||
$Self->_run (cmd=>["cd $root && make DESTDIR=$destdir uninstall"],
|
||||
$Self->run(cmd=>["cd $root && make DESTDIR=$destdir uninstall"],
|
||||
check_finished=>0);
|
||||
|
||||
# Check empty
|
||||
|
@ -21,10 +21,10 @@ mkdir $child_dir;
|
||||
verilator_flags => ["-cc", "-Mdir", "${child_dir}", "--debug-check"],
|
||||
);
|
||||
|
||||
$Self->_run(logfile=>"${child_dir}/vlt_compile.log",
|
||||
$Self->run(logfile=>"${child_dir}/vlt_compile.log",
|
||||
cmd=>\@cmdargs);
|
||||
|
||||
$Self->_run(logfile=>"${child_dir}/vlt_gcc.log",
|
||||
$Self->run(logfile=>"${child_dir}/vlt_gcc.log",
|
||||
cmd=>["cd ${child_dir} && ",
|
||||
"make", "-f".getcwd()."/Makefile_obj",
|
||||
"CPPFLAGS_DRIVER=-D".uc($self->{name}),
|
||||
|
@ -9,12 +9,12 @@ if (!$::Driver) { use FindBin; exec("$FindBin::Bin/bootstrap.pl", @ARGV, $0); di
|
||||
|
||||
$Self->{vlt} or $Self->skip("Verilator only test");
|
||||
|
||||
$Self->_run (cmd=>["cd $Self->{obj_dir}"
|
||||
$Self->run(cmd=>["cd $Self->{obj_dir}"
|
||||
." && c++ -c ../../t/t_flag_ldflags_a.cpp"
|
||||
." && ar r t_flag_ldflags_a.a t_flag_ldflags_a.o"
|
||||
." && ranlib t_flag_ldflags_a.a "],
|
||||
check_finished=>0);
|
||||
$Self->_run (cmd=>["cd $Self->{obj_dir}"
|
||||
$Self->run(cmd=>["cd $Self->{obj_dir}"
|
||||
." && c++ -fPIC -c ../../t/t_flag_ldflags_so.cpp"
|
||||
." && c++ -shared -o t_flag_ldflags_so.so -lc t_flag_ldflags_so.o"],
|
||||
check_finished=>0);
|
||||
|
@ -15,7 +15,7 @@ foreach my $prog (
|
||||
"../bin/verilator_difftree",
|
||||
"../bin/verilator_profcfunc",
|
||||
) {
|
||||
$Self->_run(fails=>1,
|
||||
$Self->run(fails=>1,
|
||||
cmd=>["perl",$prog,
|
||||
"--help"],
|
||||
logfile=>"$Self->{obj_dir}/t_help.log",
|
||||
|
@ -9,7 +9,7 @@ if (!$::Driver) { use FindBin; exec("$FindBin::Bin/bootstrap.pl", @ARGV, $0); di
|
||||
|
||||
$Self->{vlt} or $Self->skip("Verilator only test");
|
||||
|
||||
$Self->_run(cmd=>["../bin/verilator_coverage",
|
||||
$Self->run(cmd=>["../bin/verilator_coverage",
|
||||
"--write", "$Self->{obj_dir}/coverage.dat",
|
||||
"t/t_vlcov_data_a.dat",
|
||||
"t/t_vlcov_data_b.dat",
|
||||
|
@ -9,7 +9,7 @@ if (!$::Driver) { use FindBin; exec("$FindBin::Bin/bootstrap.pl", @ARGV, $0); di
|
||||
|
||||
$Self->{vlt} or $Self->skip("Verilator only test");
|
||||
|
||||
$Self->_run(cmd=>["../bin/verilator_coverage",
|
||||
$Self->run(cmd=>["../bin/verilator_coverage",
|
||||
"--rank",
|
||||
"t/t_vlcov_data_a.dat",
|
||||
"t/t_vlcov_data_b.dat",
|
||||
|
@ -14,7 +14,7 @@ foreach my $basename ("t_vlcov_data_a.dat",
|
||||
"t_vlcov_data_c.dat",
|
||||
"t_vlcov_data_d.dat",
|
||||
) {
|
||||
$Self->_run(cmd=>["../bin/verilator_coverage",
|
||||
$Self->run(cmd=>["../bin/verilator_coverage",
|
||||
"t/${basename}",
|
||||
"--write", "$Self->{obj_dir}/${basename}"
|
||||
],
|
||||
|
Loading…
Reference in New Issue
Block a user