#!/usr/bin/env perl if (!$::Driver) { use FindBin; exec("$FindBin::Bin/bootstrap.pl", @ARGV, $0); die; } # DESCRIPTION: Verilator: Verilog Test driver/expect definition # # Copyright 2003 by Wilson Snyder. This program is free software; you # can redistribute it and/or modify it under the terms of either the GNU # Lesser General Public License Version 3 or the Perl Artistic License # Version 2.0. # SPDX-License-Identifier: LGPL-3.0-only OR Artistic-2.0 scenarios(vlt => 1); top_filename("t/t_var_pinsizes.v"); compile( verilator_flags2 => ["-sc --pins-sc-biguint --trace --exe $Self->{t_dir}/t_var_pinsizes.cpp"], make_main => 0, ); if ($Self->{vlt_all}) { file_grep("$Self->{obj_dir}/$Self->{vm_prefix}.h", qr/sc_core::sc_in \s+ &i1;/x); file_grep("$Self->{obj_dir}/$Self->{vm_prefix}.h", qr/sc_core::sc_in \s+ &i8;/x); file_grep("$Self->{obj_dir}/$Self->{vm_prefix}.h", qr/sc_core::sc_in \s+ &i16;/x); file_grep("$Self->{obj_dir}/$Self->{vm_prefix}.h", qr/sc_core::sc_in \s+ &i32;/x); file_grep("$Self->{obj_dir}/$Self->{vm_prefix}.h", qr/sc_core::sc_in \s+ &i64;/x); file_grep("$Self->{obj_dir}/$Self->{vm_prefix}.h", qr/sc_core::sc_in\s> \s+ &i65;/x); file_grep("$Self->{obj_dir}/$Self->{vm_prefix}.h", qr/sc_core::sc_in\s> \s+ &i128;/x); file_grep("$Self->{obj_dir}/$Self->{vm_prefix}.h", qr/sc_core::sc_in\s> \s+ &i513;/x); file_grep("$Self->{obj_dir}/$Self->{vm_prefix}.h", qr/sc_core::sc_in\s> \s+ &ibv1;/x); file_grep("$Self->{obj_dir}/$Self->{vm_prefix}.h", qr/sc_core::sc_in\s> \s+ &ibv16;/x); file_grep("$Self->{obj_dir}/$Self->{vm_prefix}.h", qr/sc_core::sc_out \s+ &o1;/x); file_grep("$Self->{obj_dir}/$Self->{vm_prefix}.h", qr/sc_core::sc_out \s+ &o8;/x); file_grep("$Self->{obj_dir}/$Self->{vm_prefix}.h", qr/sc_core::sc_out \s+ &o16;/x); file_grep("$Self->{obj_dir}/$Self->{vm_prefix}.h", qr/sc_core::sc_out \s+ &o32;/x); file_grep("$Self->{obj_dir}/$Self->{vm_prefix}.h", qr/sc_core::sc_out \s+ &o64;/x); file_grep("$Self->{obj_dir}/$Self->{vm_prefix}.h", qr/sc_core::sc_out\s> \s+ &o65;/x); file_grep("$Self->{obj_dir}/$Self->{vm_prefix}.h", qr/sc_core::sc_out\s> \s+ &o128;/x); file_grep("$Self->{obj_dir}/$Self->{vm_prefix}.h", qr/sc_core::sc_out\s> \s+ &o513;/x); file_grep("$Self->{obj_dir}/$Self->{vm_prefix}.h", qr/sc_core::sc_out\s> \s+ &obv1;/x); file_grep("$Self->{obj_dir}/$Self->{vm_prefix}.h", qr/sc_core::sc_out\s> \s+ &obv16;/x); } execute(); ok(1); 1;