⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 85_vhier.t

📁 Verilog Parser in Perl
💻 T
字号:
#!/usr/bin/perl -w# DESCRIPTION: Perl ExtUtils: Type 'make test' to test this package## Copyright 2000-2009 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 or the Perl Artistic License.use IO::File;use strict;use Test;BEGIN { plan tests => 10 }BEGIN { require "t/test_utils.pl"; }print "Checking vhier...\n";vhier ("t/85_vhier_cells.out",	    "--cells");vhier ("t/85_vhier_inpfiles.out",   "--input-files");vhier ("t/85_vhier_resolvefiles.out","--resolve-files");vhier ("t/85_vhier_modfiles.out",   "--module-files");vhier ("t/85_vhier_topmodule.out",  "--module-files --top-module v_hier_sub");sub vhier {    my $checkname = shift;    my $flags = shift;    my $out = "test_dir/vhier.v";    run_system ("${PERL} vhier ${flags} --nomissing -y verilog v_hier_top.v -o $out");    ok(-r $out);    #run_system ("/bin/cp $out $checkname");    ok(files_identical ($checkname, $out));}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -