80_vppreproc.t

来自「Verilog Parser in Perl」· T 代码 · 共 30 行

T
30
字号
#!/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 => 6 }BEGIN { require "t/test_utils.pl"; }print "Checking vppreproc...\n";vppreproc ("t/80_vppreproc_none.out",   "test_dir/vppreproc_none.v",	"");vppreproc ("t/80_vppreproc_cmped.out",  "test_dir/vppreproc_cmped.v",	"--nocomment --pedantic");vppreproc ("t/80_vppreproc_simple.out", "test_dir/vppreproc_simple.v", "--simple");sub vppreproc {    my $checkname = shift;    my $out = shift;    my $flags = shift;    run_system ("${PERL} vppreproc ${flags} -y verilog inc2.v > $out");    ok(-r $out);    ok(files_identical ($out, $checkname));}

⌨️ 快捷键说明

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