mirror of
https://github.com/verilator/verilator.git
synced 2025-01-09 16:17:36 +00:00
ce10dbd11c
git-svn-id: file://localhost/svn/verilator/trunk/verilator@753 77ca24e4-aefa-0310-84f0-b9a241c72d87
35 lines
1.4 KiB
Perl
Executable File
35 lines
1.4 KiB
Perl
Executable File
#!/usr/bin/perl
|
|
if (!$::Driver) { use FindBin; exec("./driver.pl", @ARGV, $0); die; }
|
|
# $Id:$
|
|
# 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
|
|
# General Public License or the Perl Artistic License.
|
|
|
|
top_filename("t/t_var_pinsizes.v");
|
|
|
|
compile (
|
|
v_flags2 => ['-sp -no-pins64'],
|
|
verilator_make_gcc => 0,
|
|
) if $Last_Self->{v3};
|
|
|
|
if ($Last_Self->{v3}) {
|
|
file_grep ("obj_dir/Vt_var_pins_sc32.sp", qr/sc_in<bool> \s+ i1;/x);
|
|
file_grep ("obj_dir/Vt_var_pins_sc32.sp", qr/sc_in<uint32_t> \s+ i8;/x);
|
|
file_grep ("obj_dir/Vt_var_pins_sc32.sp", qr/sc_in<uint32_t> \s+ i16;/x);
|
|
file_grep ("obj_dir/Vt_var_pins_sc32.sp", qr/sc_in<uint32_t> \s+ i32;/x);
|
|
file_grep ("obj_dir/Vt_var_pins_sc32.sp", qr/sc_in<sc_bv<64>\s> \s+ i64;/x);
|
|
file_grep ("obj_dir/Vt_var_pins_sc32.sp", qr/sc_in<sc_bv<65>\s> \s+ i65;/x);
|
|
|
|
file_grep ("obj_dir/Vt_var_pins_sc32.sp", qr/sc_out<bool> \s+ o1;/x);
|
|
file_grep ("obj_dir/Vt_var_pins_sc32.sp", qr/sc_out<uint32_t> \s+ o8;/x);
|
|
file_grep ("obj_dir/Vt_var_pins_sc32.sp", qr/sc_out<uint32_t> \s+ o16;/x);
|
|
file_grep ("obj_dir/Vt_var_pins_sc32.sp", qr/sc_out<uint32_t> \s+ o32;/x);
|
|
file_grep ("obj_dir/Vt_var_pins_sc32.sp", qr/sc_out<sc_bv<64>\s> \s+ o64;/x);
|
|
file_grep ("obj_dir/Vt_var_pins_sc32.sp", qr/sc_out<sc_bv<65>\s> \s+ o65;/x);
|
|
}
|
|
|
|
ok(1);
|
|
1;
|