Tests: Less verbosity

This commit is contained in:
Wilson Snyder 2019-08-04 15:04:34 -04:00
parent b7bd5956ea
commit a13d230d8c
4 changed files with 6 additions and 6 deletions

View File

@ -335,7 +335,8 @@ sub one_test {
foreach my $proc ($::Fork->running) {
$other .= " ".$proc->{test_pl_filename};
}
$test->oprint("Simultaneous running tests:",$other,"\n") if $other;
$test->oprint("Simultaneous running tests:",$other,"\n")
if $other && !$opt_quiet;
if ($opt_stop) { die "%Error: --stop and errors found\n"; }
}
$self->{left_cnt}--;

View File

@ -7,9 +7,9 @@ if (!$::Driver) { use FindBin; exec("$FindBin::Bin/bootstrap.pl", @ARGV, $0); di
# Lesser General Public License Version 3 or the Perl Artistic License
# Version 2.0.
scenarios(simulator => 1);
scenarios(linter => 1);
compile(
lint(
fails => 1,
expect_filename => $Self->{golden_filename},
);

View File

@ -12,7 +12,6 @@ scenarios(linter => 1);
top_filename("t/t_inst_overwide.v");
lint(
verilator_flags => [qw(-cc)],
fails => $Self->{vlt_all},
expect_filename => $Self->{golden_filename},
);

View File

@ -7,11 +7,11 @@ if (!$::Driver) { use FindBin; exec("$FindBin::Bin/bootstrap.pl", @ARGV, $0); di
# Lesser General Public License Version 3 or the Perl Artistic License
# Version 2.0.
scenarios(simulator => 1);
scenarios(linter => 1);
top_filename("t/t_param_concat.v");
compile(
lint(
fails => 1,
expect_filename => $Self->{golden_filename},
);