Tests: Remove some old conditional-fail checks.

This commit is contained in:
Wilson Snyder 2020-05-27 21:44:28 -04:00
parent 622f59ad65
commit 41e362b580
4 changed files with 4 additions and 6 deletions

View File

@ -10,7 +10,7 @@ if (!$::Driver) { use FindBin; exec("$FindBin::Bin/bootstrap.pl", @ARGV, $0); di
scenarios(simulator => 1);
my $fail = ($Self->{vlt_all} && verilator_version() !~ /\(ord\)/);
my $fail = $Self->{vlt_all};
compile(
);

View File

@ -12,7 +12,7 @@ scenarios(simulator => 1);
top_filename("t/t_clk_latch.v");
my $fail = ($Self->{vlt_all} && verilator_version() !~ /\(ord\)/);
my $fail = $Self->{vlt_all};
compile(
v_flags2 => ['+define+EDGE_DETECT_STYLE'],

View File

@ -10,12 +10,10 @@ if (!$::Driver) { use FindBin; exec("$FindBin::Bin/bootstrap.pl", @ARGV, $0); di
scenarios(simulator => 1);
my $pubtask = ($Self->{vlt_all} && verilator_version() =~ /\(public_tasks\)/); # TBD
top_filename("t/t_func_public.v");
compile(
verilator_flags2 => [($pubtask?'-DVERILATOR_PUBLIC_TASKS':''), "--trace"],
verilator_flags2 => ["--trace"],
fails => $fail,
);

View File

@ -10,7 +10,7 @@ if (!$::Driver) { use FindBin; exec("$FindBin::Bin/bootstrap.pl", @ARGV, $0); di
scenarios(simulator => 1);
my $fail = ($Self->{vlt_all} && verilator_version() !~ /\(ord\)/);
my $fail = $Self->{vlt_all};
compile(
);