forked from github/verilator
Tests: Abstract out common test comparison
This commit is contained in:
parent
bcf9abf490
commit
ab5d4bd51d
@ -1385,6 +1385,12 @@ sub errors {
|
||||
return $self->{errors};
|
||||
}
|
||||
|
||||
sub golden_filename {
|
||||
my $self = (ref $_[0]? shift : $Self);
|
||||
$self->{golden_filename} = shift if defined $_[0];
|
||||
return $self->{golden_filename};
|
||||
}
|
||||
|
||||
sub scenario_off {
|
||||
my $self = (ref $_[0]? shift : $Self);
|
||||
return $self->{scenario_off};
|
||||
|
@ -11,6 +11,7 @@ if (!$::Driver) { use FindBin; exec("$FindBin::Bin/bootstrap.pl", @ARGV, $0); di
|
||||
scenarios(simulator => 1);
|
||||
|
||||
top_filename("t/t_cover_line.v");
|
||||
golden_filename("t/t_cover_line.out");
|
||||
|
||||
compile(
|
||||
verilator_flags2 => ['--cc --coverage-line +define+ATTRIBUTE'],
|
||||
@ -29,7 +30,7 @@ run(cmd => ["../bin/verilator_coverage",
|
||||
verilator_run => 1,
|
||||
);
|
||||
|
||||
files_identical("$Self->{obj_dir}/annotated/t_cover_line.v", "t/t_cover_line.out");
|
||||
files_identical("$Self->{obj_dir}/annotated/t_cover_line.v", $Self->{golden_filename});
|
||||
|
||||
# Also try lcov
|
||||
run(cmd => ["../bin/verilator_coverage",
|
||||
|
@ -11,6 +11,7 @@ if (!$::Driver) { use FindBin; exec("$FindBin::Bin/bootstrap.pl", @ARGV, $0); di
|
||||
scenarios(simulator => 1);
|
||||
|
||||
top_filename("t/t_cover_line.v");
|
||||
golden_filename("t/t_cover_line.out");
|
||||
|
||||
compile(
|
||||
verilator_flags2 => ['--cc', '--coverage-line', "t/t_cover_line.vlt"],
|
||||
@ -30,7 +31,7 @@ run(cmd => ["../bin/verilator_coverage",
|
||||
verilator_run => 1,
|
||||
);
|
||||
|
||||
files_identical("$Self->{obj_dir}/annotated/t_cover_line.v", "t/t_cover_line.out");
|
||||
files_identical("$Self->{obj_dir}/annotated/t_cover_line.v", $Self->{golden_filename});
|
||||
|
||||
ok(1);
|
||||
1;
|
||||
|
@ -11,7 +11,7 @@ if (!$::Driver) { use FindBin; exec("$FindBin::Bin/bootstrap.pl", @ARGV, $0); di
|
||||
scenarios(simulator => 1);
|
||||
|
||||
top_filename("t/t_display.v");
|
||||
$Self->{golden_filename} = "t/t_display.out"; # Match unopt version
|
||||
golden_filename("t/t_display.out");
|
||||
|
||||
compile(
|
||||
verilator_flags2 => ["-O0"],
|
||||
|
@ -11,7 +11,7 @@ if (!$::Driver) { use FindBin; exec("$FindBin::Bin/bootstrap.pl", @ARGV, $0); di
|
||||
scenarios(simulator => 1);
|
||||
|
||||
top_filename("t/t_display_real.v");
|
||||
$Self->{golden_filename} = "t/t_display_real.out"; # Match unopt version
|
||||
golden_filename("t/t_display_real.out");
|
||||
|
||||
compile(
|
||||
verilator_flags2 => ["-O0"],
|
||||
|
@ -11,7 +11,7 @@ if (!$::Driver) { use FindBin; exec("$FindBin::Bin/bootstrap.pl", @ARGV, $0); di
|
||||
scenarios(simulator => 1);
|
||||
|
||||
top_filename("t/t_display_signed.v");
|
||||
$Self->{golden_filename} = "t/t_display_signed.out"; # Match unopt version
|
||||
golden_filename("t/t_display_signed.out");
|
||||
|
||||
compile(
|
||||
verilator_flags2 => ["-O0"],
|
||||
|
@ -19,7 +19,7 @@ if ($Self->{nc}) {
|
||||
}
|
||||
|
||||
compile(
|
||||
v_flags2 => ["t/t_dpi_arg_inout_type.cpp"],
|
||||
v_flags2 => ["t/$Self->{name}.cpp"],
|
||||
# --no-decoration so .out file doesn't comment on source lines
|
||||
verilator_flags2 => ["-Wall -Wno-DECLFILENAME --no-decoration"],
|
||||
# NC: Gdd the obj_dir to the C include path
|
||||
@ -30,10 +30,8 @@ compile(
|
||||
);
|
||||
|
||||
if ($Self->{vlt_all}) {
|
||||
files_identical(
|
||||
"$Self->{obj_dir}/Vt_dpi_arg_inout_type__Dpi.h",
|
||||
"t/t_dpi_arg_inout_type__Dpi.out"
|
||||
);
|
||||
files_identical("$Self->{obj_dir}/$Self->{VM_PREFIX}__Dpi.h",
|
||||
"t/$Self->{name}__Dpi.out");
|
||||
}
|
||||
|
||||
execute(
|
||||
|
@ -19,7 +19,7 @@ if ($Self->{nc}) {
|
||||
}
|
||||
|
||||
compile(
|
||||
v_flags2 => ["t/t_dpi_arg_inout_unpack.cpp"],
|
||||
v_flags2 => ["t/$Self->{name}.cpp"],
|
||||
# --no-decoration so .out file doesn't comment on source lines
|
||||
verilator_flags2 => ["-Wall -Wno-DECLFILENAME --no-decoration"],
|
||||
# NC: Gdd the obj_dir to the C include path
|
||||
@ -30,10 +30,8 @@ compile(
|
||||
);
|
||||
|
||||
if ($Self->{vlt_all}) {
|
||||
files_identical(
|
||||
"$Self->{obj_dir}/Vt_dpi_arg_inout_unpack__Dpi.h",
|
||||
"t/t_dpi_arg_inout_unpack__Dpi.out"
|
||||
);
|
||||
files_identical("$Self->{obj_dir}/$Self->{VM_PREFIX}__Dpi.h",
|
||||
"t/$Self->{name}__Dpi.out");
|
||||
}
|
||||
|
||||
execute(
|
||||
|
@ -19,7 +19,7 @@ if ($Self->{nc}) {
|
||||
}
|
||||
|
||||
compile(
|
||||
v_flags2 => ["t/t_dpi_arg_input_type.cpp"],
|
||||
v_flags2 => ["t/$Self->{name}.cpp"],
|
||||
# --no-decoration so .out file doesn't comment on source lines
|
||||
verilator_flags2 => ["-Wall -Wno-DECLFILENAME --no-decoration"],
|
||||
# NC: Gdd the obj_dir to the C include path
|
||||
@ -30,10 +30,8 @@ compile(
|
||||
);
|
||||
|
||||
if ($Self->{vlt_all}) {
|
||||
files_identical(
|
||||
"$Self->{obj_dir}/Vt_dpi_arg_input_type__Dpi.h",
|
||||
"t/t_dpi_arg_input_type__Dpi.out"
|
||||
);
|
||||
files_identical("$Self->{obj_dir}/$Self->{VM_PREFIX}__Dpi.h",
|
||||
"t/$Self->{name}__Dpi.out");
|
||||
}
|
||||
|
||||
execute(
|
||||
|
@ -19,7 +19,7 @@ if ($Self->{nc}) {
|
||||
}
|
||||
|
||||
compile(
|
||||
v_flags2 => ["t/t_dpi_arg_input_unpack.cpp"],
|
||||
v_flags2 => ["t/$Self->{name}.cpp"],
|
||||
# --no-decoration so .out file doesn't comment on source lines
|
||||
verilator_flags2 => ["-Wall -Wno-DECLFILENAME --no-decoration"],
|
||||
# NC: Gdd the obj_dir to the C include path
|
||||
@ -30,10 +30,8 @@ compile(
|
||||
);
|
||||
|
||||
if ($Self->{vlt_all}) {
|
||||
files_identical(
|
||||
"$Self->{obj_dir}/Vt_dpi_arg_input_unpack__Dpi.h",
|
||||
"t/t_dpi_arg_input_unpack__Dpi.out"
|
||||
);
|
||||
files_identical("$Self->{obj_dir}/$Self->{VM_PREFIX}__Dpi.h",
|
||||
"t/$Self->{name}__Dpi.out");
|
||||
}
|
||||
|
||||
execute(
|
||||
|
@ -19,7 +19,7 @@ if ($Self->{nc}) {
|
||||
}
|
||||
|
||||
compile(
|
||||
v_flags2 => ["t/t_dpi_arg_output_type.cpp"],
|
||||
v_flags2 => ["t/$Self->{name}.cpp"],
|
||||
# --no-decoration so .out file doesn't comment on source lines
|
||||
verilator_flags2 => ["-Wall -Wno-DECLFILENAME --no-decoration"],
|
||||
# NC: Gdd the obj_dir to the C include path
|
||||
@ -30,10 +30,8 @@ compile(
|
||||
);
|
||||
|
||||
if ($Self->{vlt_all}) {
|
||||
files_identical(
|
||||
"$Self->{obj_dir}/Vt_dpi_arg_output_type__Dpi.h",
|
||||
"t/t_dpi_arg_output_type__Dpi.out"
|
||||
);
|
||||
files_identical("$Self->{obj_dir}/$Self->{VM_PREFIX}__Dpi.h",
|
||||
"t/$Self->{name}__Dpi.out");
|
||||
}
|
||||
|
||||
execute(
|
||||
|
@ -19,7 +19,7 @@ if ($Self->{nc}) {
|
||||
}
|
||||
|
||||
compile(
|
||||
v_flags2 => ["t/t_dpi_arg_output_unpack.cpp"],
|
||||
v_flags2 => ["t/$Self->{name}.cpp"],
|
||||
# --no-decoration so .out file doesn't comment on source lines
|
||||
verilator_flags2 => ["-Wall -Wno-DECLFILENAME --no-decoration"],
|
||||
# NC: Gdd the obj_dir to the C include path
|
||||
@ -30,10 +30,8 @@ compile(
|
||||
);
|
||||
|
||||
if ($Self->{vlt_all}) {
|
||||
files_identical(
|
||||
"$Self->{obj_dir}/Vt_dpi_arg_output_unpack__Dpi.h",
|
||||
"t/t_dpi_arg_output_unpack__Dpi.out"
|
||||
);
|
||||
files_identical("$Self->{obj_dir}/$Self->{VM_PREFIX}__Dpi.h",
|
||||
"t/$Self->{name}__Dpi.out");
|
||||
}
|
||||
|
||||
execute(
|
||||
|
@ -19,7 +19,7 @@ if ($Self->{nc}) {
|
||||
}
|
||||
|
||||
compile(
|
||||
v_flags2 => ["t/t_dpi_result_type.cpp"],
|
||||
v_flags2 => ["t/$Self->{name}.cpp"],
|
||||
# --no-decoration so .out file doesn't comment on source lines
|
||||
verilator_flags2 => ["-Wall -Wno-DECLFILENAME --no-decoration"],
|
||||
# NC: Gdd the obj_dir to the C include path
|
||||
@ -30,10 +30,8 @@ compile(
|
||||
);
|
||||
|
||||
if ($Self->{vlt_all}) {
|
||||
files_identical(
|
||||
"$Self->{obj_dir}/Vt_dpi_result_type__Dpi.h",
|
||||
"t/t_dpi_result_type__Dpi.out"
|
||||
);
|
||||
files_identical("$Self->{obj_dir}/$Self->{VM_PREFIX}__Dpi.h",
|
||||
"t/$Self->{name}__Dpi.out");
|
||||
}
|
||||
|
||||
execute(
|
||||
|
@ -9,6 +9,7 @@ if (!$::Driver) { use FindBin; exec("$FindBin::Bin/bootstrap.pl", @ARGV, $0); di
|
||||
# SPDX-License-Identifier: LGPL-3.0-only OR Artistic-2.0
|
||||
|
||||
top_filename("t_gen_genblk.v");
|
||||
golden_filename("t/t_gen_genblk.out");
|
||||
|
||||
scenarios(simulator => 1);
|
||||
|
||||
@ -19,7 +20,7 @@ compile(
|
||||
);
|
||||
|
||||
execute(
|
||||
expect_filename => "t/t_gen_genblk.out",
|
||||
expect_filename => $Self->{golden_filename},
|
||||
);
|
||||
|
||||
ok(1);
|
||||
|
@ -11,7 +11,7 @@ if (!$::Driver) { use FindBin; exec("$FindBin::Bin/bootstrap.pl", @ARGV, $0); di
|
||||
scenarios(simulator => 1);
|
||||
|
||||
top_filename("t/t_interface_ref_trace.v");
|
||||
$Self->{golden_filename} = "t/t_interface_ref_trace.out";
|
||||
golden_filename("t/t_interface_ref_trace.out");
|
||||
|
||||
compile(
|
||||
v_flags2 => ['+define+NO_INLINE_A'],
|
||||
|
@ -11,7 +11,7 @@ if (!$::Driver) { use FindBin; exec("$FindBin::Bin/bootstrap.pl", @ARGV, $0); di
|
||||
scenarios(simulator => 1);
|
||||
|
||||
top_filename("t/t_interface_ref_trace.v");
|
||||
$Self->{golden_filename} = "t/t_interface_ref_trace.out";
|
||||
golden_filename("t/t_interface_ref_trace.out");
|
||||
|
||||
compile(
|
||||
v_flags2 => ['+define+NO_INLINE_A +define+NO_INLINE_B'],
|
||||
|
@ -11,7 +11,7 @@ if (!$::Driver) { use FindBin; exec("$FindBin::Bin/bootstrap.pl", @ARGV, $0); di
|
||||
scenarios(simulator => 1);
|
||||
|
||||
top_filename("t/t_interface_ref_trace.v");
|
||||
$Self->{golden_filename} = "t/t_interface_ref_trace.out";
|
||||
golden_filename("t/t_interface_ref_trace.out");
|
||||
|
||||
compile(
|
||||
v_flags2 => ['+define+NO_INLINE_B'],
|
||||
|
@ -11,7 +11,7 @@ if (!$::Driver) { use FindBin; exec("$FindBin::Bin/bootstrap.pl", @ARGV, $0); di
|
||||
scenarios(vlt => 1);
|
||||
|
||||
top_filename("$Self->{obj_dir}/$Self->{name}.v");
|
||||
$Self->{golden_filename} = "$Self->{obj_dir}/$Self->{name}.out";
|
||||
golden_filename("$Self->{obj_dir}/$Self->{name}.out");
|
||||
|
||||
# Rather then having to maintain a new .v and .out, simply add returns
|
||||
# to all lines of the existing t_preproc test.
|
||||
|
@ -11,7 +11,7 @@ if (!$::Driver) { use FindBin; exec("$FindBin::Bin/bootstrap.pl", @ARGV, $0); di
|
||||
scenarios(vlt => 1);
|
||||
|
||||
top_filename("t/t_trace_array.v");
|
||||
$Self->{golden_filename} = "t/t_trace_array_fst.out";
|
||||
golden_filename("t/t_trace_array_fst.out");
|
||||
|
||||
compile(
|
||||
verilator_flags2 => ['--cc --trace-fst --trace-structs',
|
||||
|
@ -11,7 +11,7 @@ if (!$::Driver) { use FindBin; exec("$FindBin::Bin/bootstrap.pl", @ARGV, $0); di
|
||||
scenarios(vlt => 1);
|
||||
|
||||
top_filename("t/t_trace_array.v");
|
||||
$Self->{golden_filename} = "t/t_trace_array_fst.out";
|
||||
golden_filename("t/t_trace_array_fst.out");
|
||||
|
||||
compile(
|
||||
verilator_flags2 => ['--cc --trace-fst --trace-threads 1 --trace-structs'],
|
||||
|
@ -11,7 +11,7 @@ if (!$::Driver) { use FindBin; exec("$FindBin::Bin/bootstrap.pl", @ARGV, $0); di
|
||||
scenarios(vlt => 1);
|
||||
|
||||
top_filename("t/t_trace_array.v");
|
||||
$Self->{golden_filename} = "t/t_trace_array_fst.out";
|
||||
golden_filename("t/t_trace_array_fst.out");
|
||||
|
||||
compile(
|
||||
verilator_flags2 => ['--cc --trace-fst --trace-threads 2 --trace-structs'],
|
||||
|
@ -11,7 +11,7 @@ if (!$::Driver) { use FindBin; exec("$FindBin::Bin/bootstrap.pl", @ARGV, $0); di
|
||||
scenarios(simulator => 1);
|
||||
|
||||
top_filename("t/t_trace_complex.v");
|
||||
$Self->{golden_filename} = "t/t_trace_complex_fst.out";
|
||||
golden_filename("t/t_trace_complex_fst.out");
|
||||
|
||||
compile(
|
||||
verilator_flags2 => ['--cc --trace-fst --trace-threads 1'],
|
||||
|
@ -11,7 +11,7 @@ if (!$::Driver) { use FindBin; exec("$FindBin::Bin/bootstrap.pl", @ARGV, $0); di
|
||||
scenarios(simulator => 1);
|
||||
|
||||
top_filename("t/t_trace_complex.v");
|
||||
$Self->{golden_filename} = "t/t_trace_complex_fst.out";
|
||||
golden_filename("t/t_trace_complex_fst.out");
|
||||
|
||||
compile(
|
||||
verilator_flags2 => ['--cc --trace-fst --trace-threads 2'],
|
||||
|
@ -13,6 +13,7 @@ if (!$::Driver) { use FindBin; exec("$FindBin::Bin/bootstrap.pl", @ARGV, $0); di
|
||||
scenarios(vlt => 1);
|
||||
|
||||
top_filename("t/t_trace_complex.v");
|
||||
golden_filename("t/t_trace_complex.out");
|
||||
|
||||
compile(
|
||||
verilator_flags2 => ['--cc --trace -CFLAGS -DVL_TRACE_VCD_OLD_API'],
|
||||
@ -32,7 +33,7 @@ file_grep ("$Self->{obj_dir}/simx.vcd", qr/ v_arru_arru\(/);
|
||||
file_grep ("$Self->{obj_dir}/simx.vcd", qr/ v_arru_arrp\(/);
|
||||
file_grep ("$Self->{obj_dir}/simx.vcd", qr/ v_arru_strp\(/);
|
||||
|
||||
vcd_identical ("$Self->{obj_dir}/simx.vcd", "t/t_trace_complex.out");
|
||||
vcd_identical("$Self->{obj_dir}/simx.vcd", $Self->{golden_filename});
|
||||
|
||||
ok(1);
|
||||
1;
|
||||
|
@ -13,6 +13,7 @@ if (!$::Driver) { use FindBin; exec("$FindBin::Bin/bootstrap.pl", @ARGV, $0); di
|
||||
scenarios(vlt => 1);
|
||||
|
||||
top_filename("t/t_trace_complex.v");
|
||||
golden_filename("t/t_trace_complex.out");
|
||||
|
||||
compile(
|
||||
verilator_flags2 => ['--cc --trace -CFLAGS -DVL_PORTABLE_ONLY'],
|
||||
@ -32,7 +33,7 @@ file_grep ("$Self->{obj_dir}/simx.vcd", qr/ v_arru_arru\(/);
|
||||
file_grep ("$Self->{obj_dir}/simx.vcd", qr/ v_arru_arrp\(/);
|
||||
file_grep ("$Self->{obj_dir}/simx.vcd", qr/ v_arru_strp\(/);
|
||||
|
||||
vcd_identical ("$Self->{obj_dir}/simx.vcd", "t/t_trace_complex.out");
|
||||
vcd_identical("$Self->{obj_dir}/simx.vcd", $Self->{golden_filename});
|
||||
|
||||
ok(1);
|
||||
1;
|
||||
|
@ -11,7 +11,7 @@ if (!$::Driver) { use FindBin; exec("$FindBin::Bin/bootstrap.pl", @ARGV, $0); di
|
||||
scenarios(simulator => 1);
|
||||
|
||||
top_filename("t/t_trace_complex.v");
|
||||
$Self->{golden_filename} = "t/t_trace_complex.out";
|
||||
golden_filename("t/t_trace_complex.out");
|
||||
|
||||
compile(
|
||||
verilator_flags2 => ['--cc --trace --trace-threads 1']
|
||||
|
@ -11,6 +11,7 @@ if (!$::Driver) { use FindBin; exec("$FindBin::Bin/bootstrap.pl", @ARGV, $0); di
|
||||
scenarios(vlt_all => 1);
|
||||
|
||||
top_filename("t/t_trace_public.v");
|
||||
golden_filename("t/t_trace_public.out");
|
||||
|
||||
compile(
|
||||
make_top_shell => 0,
|
||||
@ -22,8 +23,7 @@ execute(
|
||||
check_finished => 1,
|
||||
);
|
||||
|
||||
vcd_identical("$Self->{obj_dir}/simx.vcd",
|
||||
"t/t_trace_public.out");
|
||||
vcd_identical("$Self->{obj_dir}/simx.vcd", $Self->{golden_filename});
|
||||
|
||||
ok(1);
|
||||
1;
|
||||
|
@ -11,6 +11,7 @@ if (!$::Driver) { use FindBin; exec("$FindBin::Bin/bootstrap.pl", @ARGV, $0); di
|
||||
scenarios(vlt_all => 1);
|
||||
|
||||
top_filename("t/t_trace_public.v");
|
||||
golden_filename("t/t_trace_public.out");
|
||||
|
||||
compile(
|
||||
make_top_shell => 0,
|
||||
@ -22,8 +23,7 @@ execute(
|
||||
check_finished => 1,
|
||||
);
|
||||
|
||||
vcd_identical("$Self->{obj_dir}/simx.vcd",
|
||||
"t/t_trace_public.out");
|
||||
vcd_identical("$Self->{obj_dir}/simx.vcd", $Self->{golden_filename});
|
||||
|
||||
ok(1);
|
||||
1;
|
||||
|
@ -11,6 +11,7 @@ if (!$::Driver) { use FindBin; exec("$FindBin::Bin/bootstrap.pl", @ARGV, $0); di
|
||||
scenarios(vlt_all => 1);
|
||||
|
||||
top_filename("t/t_trace_public.v");
|
||||
golden_filename("t/t_trace_public.out");
|
||||
|
||||
compile(
|
||||
make_top_shell => 0,
|
||||
@ -22,8 +23,7 @@ execute(
|
||||
check_finished => 1,
|
||||
);
|
||||
|
||||
vcd_identical("$Self->{obj_dir}/simx.vcd",
|
||||
"t/t_trace_public.out");
|
||||
vcd_identical("$Self->{obj_dir}/simx.vcd", $Self->{golden_filename});
|
||||
|
||||
# vcd_identical doesn't detect "$var a.b;" vs "$scope module a; $var b;"
|
||||
file_grep("$Self->{obj_dir}/simx.vcd", qr/module glbl/i);
|
||||
|
@ -11,6 +11,8 @@ if (!$::Driver) { use FindBin; exec("$FindBin::Bin/bootstrap.pl", @ARGV, $0); di
|
||||
scenarios(vlt_all => 1);
|
||||
|
||||
top_filename("t/t_trace_public.v");
|
||||
golden_filename("t/t_trace_public.out");
|
||||
|
||||
my $out_filename = "$Self->{obj_dir}/V$Self->{name}.xml";
|
||||
|
||||
compile(
|
||||
@ -27,8 +29,7 @@ execute(
|
||||
check_finished => 1,
|
||||
);
|
||||
|
||||
vcd_identical("$Self->{obj_dir}/simx.vcd",
|
||||
"t/t_trace_public.out");
|
||||
vcd_identical("$Self->{obj_dir}/simx.vcd", $Self->{golden_filename});
|
||||
|
||||
# vcd_identical doesn't detect "$var a.b;" vs "$scope module a; $var b;"
|
||||
file_grep("$Self->{obj_dir}/simx.vcd", qr/module glbl/i);
|
||||
|
Loading…
Reference in New Issue
Block a user