From 16234bb713df28b8529639dbbece9f857b8e89e2 Mon Sep 17 00:00:00 2001 From: Wilson Snyder Date: Sat, 23 Sep 2017 08:50:39 -0400 Subject: [PATCH] Tests: Call driver's run instead of private _run. --- test_regress/driver.pl | 4 ++++ test_regress/t/t_assert_cover.pl | 8 ++++---- test_regress/t/t_case_huge_prof.pl | 8 ++++---- test_regress/t/t_cover_line_cc.pl | 16 ++++++++-------- test_regress/t/t_dist_install.pl | 12 ++++++------ test_regress/t/t_embed1.pl | 24 ++++++++++++------------ test_regress/t/t_flag_ldflags.pl | 18 +++++++++--------- test_regress/t/t_help.pl | 12 ++++++------ test_regress/t/t_vlcov_merge.pl | 14 +++++++------- test_regress/t/t_vlcov_rank.pl | 18 +++++++++--------- test_regress/t/t_vlcov_rewrite.pl | 12 ++++++------ 11 files changed, 75 insertions(+), 71 deletions(-) diff --git a/test_regress/driver.pl b/test_regress/driver.pl index 358aaa227..e8d1a52b2 100755 --- a/test_regress/driver.pl +++ b/test_regress/driver.pl @@ -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, diff --git a/test_regress/t/t_assert_cover.pl b/test_regress/t/t_assert_cover.pl index 9b33acb48..04072a897 100755 --- a/test_regress/t/t_assert_cover.pl +++ b/test_regress/t/t_assert_cover.pl @@ -28,10 +28,10 @@ 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", - tee=>0, - cmd=>[($ENV{VERILATOR_ICCR}||'iccr'), - "-test ${name} ${cf}"]); + $Self->run(logfile=>"$Self->{obj_dir}/${name}__nccover.log", + tee=>0, + cmd=>[($ENV{VERILATOR_ICCR}||'iccr'), + "-test ${name} ${cf}"]); } file_grep ($Self->{run_log_filename}, qr/COVER: Cyc==4/); diff --git a/test_regress/t/t_case_huge_prof.pl b/test_regress/t/t_case_huge_prof.pl index d75393067..19d62b5a6 100755 --- a/test_regress/t/t_case_huge_prof.pl +++ b/test_regress/t/t_case_huge_prof.pl @@ -32,11 +32,11 @@ $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"], - check_finished=>0); +$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"], - check_finished=>0); +$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/); diff --git a/test_regress/t/t_cover_line_cc.pl b/test_regress/t/t_cover_line_cc.pl index af024c48d..7e2999874 100755 --- a/test_regress/t/t_cover_line_cc.pl +++ b/test_regress/t/t_cover_line_cc.pl @@ -10,20 +10,20 @@ if (!$::Driver) { use FindBin; exec("$FindBin::Bin/bootstrap.pl", @ARGV, $0); di top_filename("t/t_cover_line.v"); compile ( - verilator_flags2 => ['--cc --coverage-line'], - ); + verilator_flags2 => ['--cc --coverage-line'], + ); execute ( - check_finished=>1, - ); + check_finished=>1, + ); # Read the input .v file and do any CHECK_COVER requests inline_checks(); -$Self->_run(cmd=>["../bin/verilator_coverage", - "--annotate", "$Self->{obj_dir}/annotated", - "$Self->{obj_dir}/coverage.dat", - ], +$Self->run(cmd=>["../bin/verilator_coverage", + "--annotate", "$Self->{obj_dir}/annotated", + "$Self->{obj_dir}/coverage.dat", + ], ); ok(files_identical("$Self->{obj_dir}/annotated/t_cover_line.v", "t/t_cover_line.out")); diff --git a/test_regress/t/t_dist_install.pl b/test_regress/t/t_dist_install.pl index 82f467d6f..347b9ff39 100755 --- a/test_regress/t/t_dist_install.pl +++ b/test_regress/t/t_dist_install.pl @@ -18,12 +18,12 @@ if (!-r "$root/.git") { my $cwd = getcwd(); my $destdir = "$cwd/".$Self->{obj_dir}; # Start clean - $Self->_run(cmd=>["rm -rf $destdir && mkdir -p $destdir"], - check_finished=>0); + $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"], - check_finished=>0); + $Self->run(cmd=>["cd $root && make DESTDIR=$destdir install-all"], + check_finished=>0); # Check we can run a test # Unfortunately the prefix was hardcoded in the exec at a different place, @@ -32,8 +32,8 @@ if (!-r "$root/.git") { # Uninstall print "Uninstall...\n"; - $Self->_run (cmd=>["cd $root && make DESTDIR=$destdir uninstall"], - check_finished=>0); + $Self->run(cmd=>["cd $root && make DESTDIR=$destdir uninstall"], + check_finished=>0); # Check empty my @files; diff --git a/test_regress/t/t_embed1.pl b/test_regress/t/t_embed1.pl index c6d99cb07..7d6eb6d3c 100755 --- a/test_regress/t/t_embed1.pl +++ b/test_regress/t/t_embed1.pl @@ -21,19 +21,19 @@ mkdir $child_dir; verilator_flags => ["-cc", "-Mdir", "${child_dir}", "--debug-check"], ); - $Self->_run(logfile=>"${child_dir}/vlt_compile.log", - cmd=>\@cmdargs); + $Self->run(logfile=>"${child_dir}/vlt_compile.log", + cmd=>\@cmdargs); - $Self->_run(logfile=>"${child_dir}/vlt_gcc.log", - cmd=>["cd ${child_dir} && ", - "make", "-f".getcwd()."/Makefile_obj", - "CPPFLAGS_DRIVER=-D".uc($self->{name}), - ($opt_verbose ? "CPPFLAGS_DRIVER2=-DTEST_VERBOSE=1":""), - "MAKE_MAIN=0", - "VM_PREFIX=$self->{VM_PREFIX}_child", - "V$self->{name}_child__ALL.a", # bypass default rule, make archive - ($param{make_flags}||""), - ]); + $Self->run(logfile=>"${child_dir}/vlt_gcc.log", + cmd=>["cd ${child_dir} && ", + "make", "-f".getcwd()."/Makefile_obj", + "CPPFLAGS_DRIVER=-D".uc($self->{name}), + ($opt_verbose ? "CPPFLAGS_DRIVER2=-DTEST_VERBOSE=1":""), + "MAKE_MAIN=0", + "VM_PREFIX=$self->{VM_PREFIX}_child", + "V$self->{name}_child__ALL.a", # bypass default rule, make archive + ($param{make_flags}||""), + ]); } # Compile the parent (might be with other than verilator) diff --git a/test_regress/t/t_flag_ldflags.pl b/test_regress/t/t_flag_ldflags.pl index 5a1d6bbc5..a1f016a71 100755 --- a/test_regress/t/t_flag_ldflags.pl +++ b/test_regress/t/t_flag_ldflags.pl @@ -9,15 +9,15 @@ 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}" - ." && 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}" - ." && 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); +$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}" + ." && 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); compile ( # Pass multiple -D's so we check quoting works properly diff --git a/test_regress/t/t_help.pl b/test_regress/t/t_help.pl index 5324df14f..a69698231 100755 --- a/test_regress/t/t_help.pl +++ b/test_regress/t/t_help.pl @@ -15,12 +15,12 @@ foreach my $prog ( "../bin/verilator_difftree", "../bin/verilator_profcfunc", ) { - $Self->_run(fails=>1, - cmd=>["perl",$prog, - "--help"], - logfile=>"$Self->{obj_dir}/t_help.log", - tee=>0, - ); + $Self->run(fails=>1, + cmd=>["perl",$prog, + "--help"], + logfile=>"$Self->{obj_dir}/t_help.log", + tee=>0, + ); file_grep ("$Self->{obj_dir}/t_help.log", qr/DISTRIBUTION/i); } diff --git a/test_regress/t/t_vlcov_merge.pl b/test_regress/t/t_vlcov_merge.pl index e7143abc2..c811644bd 100755 --- a/test_regress/t/t_vlcov_merge.pl +++ b/test_regress/t/t_vlcov_merge.pl @@ -9,13 +9,13 @@ 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", - "--write", "$Self->{obj_dir}/coverage.dat", - "t/t_vlcov_data_a.dat", - "t/t_vlcov_data_b.dat", - "t/t_vlcov_data_c.dat", - "t/t_vlcov_data_d.dat", - ], +$Self->run(cmd=>["../bin/verilator_coverage", + "--write", "$Self->{obj_dir}/coverage.dat", + "t/t_vlcov_data_a.dat", + "t/t_vlcov_data_b.dat", + "t/t_vlcov_data_c.dat", + "t/t_vlcov_data_d.dat", + ], ); ok(files_identical("$Self->{obj_dir}/coverage.dat", "t/$Self->{name}.out")); 1; diff --git a/test_regress/t/t_vlcov_rank.pl b/test_regress/t/t_vlcov_rank.pl index febe59c0e..c013fddab 100755 --- a/test_regress/t/t_vlcov_rank.pl +++ b/test_regress/t/t_vlcov_rank.pl @@ -9,15 +9,15 @@ 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", - "--rank", - "t/t_vlcov_data_a.dat", - "t/t_vlcov_data_b.dat", - "t/t_vlcov_data_c.dat", - "t/t_vlcov_data_d.dat", - ], - logfile=>"$Self->{obj_dir}/vlcov.log", - tee => 0, +$Self->run(cmd=>["../bin/verilator_coverage", + "--rank", + "t/t_vlcov_data_a.dat", + "t/t_vlcov_data_b.dat", + "t/t_vlcov_data_c.dat", + "t/t_vlcov_data_d.dat", + ], + logfile=>"$Self->{obj_dir}/vlcov.log", + tee => 0, ); ok(files_identical("$Self->{obj_dir}/vlcov.log", "t/$Self->{name}.out")); 1; diff --git a/test_regress/t/t_vlcov_rewrite.pl b/test_regress/t/t_vlcov_rewrite.pl index c538a9470..4e175473b 100755 --- a/test_regress/t/t_vlcov_rewrite.pl +++ b/test_regress/t/t_vlcov_rewrite.pl @@ -14,12 +14,12 @@ foreach my $basename ("t_vlcov_data_a.dat", "t_vlcov_data_c.dat", "t_vlcov_data_d.dat", ) { - $Self->_run(cmd=>["../bin/verilator_coverage", - "t/${basename}", - "--write", "$Self->{obj_dir}/${basename}" - ], - tee=>0, - ); + $Self->run(cmd=>["../bin/verilator_coverage", + "t/${basename}", + "--write", "$Self->{obj_dir}/${basename}" + ], + tee=>0, + ); ok(files_identical("$Self->{obj_dir}/${basename}", "t/${basename}")); } 1;