58_vsplitmodule.t
来自「Verilog Parser in Perl」· T 代码 · 共 26 行
T
26 行
#!/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 strict;use Test;BEGIN { plan tests => 2 }BEGIN { require "t/test_utils.pl"; }$ENV{HARNESS_ACTIVE} = 1; # vsplitmodule checks this and doesn't dieprint "Checking vsplitmodule...\n";{ # -List my $out = "test_dir/a.v"; unlink $out; run_system ("${PERL} ./vsplitmodule"); ok(1); ok(-r $out); unlink $out;}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?