inc_taint.t

来自「source of perl for linux application,」· T 代码 · 共 27 行

T
27
字号
#!/usr/bin/perl -wBEGIN {    if( $ENV{PERL_CORE} ) {        chdir 't';        @INC = ('../lib', 'lib');    }    else {        unshift @INC, 't/lib';    }}use Test::Harness;use Test::More tests => 1;use Dev::Null;push @INC, 'we_added_this_lib';tie *NULL, 'Dev::Null' or die $!;select NULL;my($tot, $failed) = Test::Harness::execute_tests(    tests => [ $ENV{PERL_CORE} ? 'lib/sample-tests/inc_taint' : 't/sample-tests/inc_taint' ]);select STDOUT;ok( Test::Harness::_all_ok($tot), 'tests with taint on preserve @INC' );

⌨️ 快捷键说明

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