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

📄 taint.t

📁 source of perl for linux application,
💻 T
字号:
#!./perl -Tw# Testing Cwd under taint mode.use strict;BEGIN {    if ($ENV{PERL_CORE}) {        chdir 't';        @INC = '../lib';    }}use Cwd;chdir 't';use File::Spec;use lib File::Spec->catdir('t', 'lib');use Test::More tests => 17;use Scalar::Util qw/tainted/;my @Functions = qw(getcwd cwd fastcwd fastgetcwd                   abs_path fast_abs_path                   realpath fast_realpath                  );foreach my $func (@Functions) {    no strict 'refs';    my $cwd;    eval { $cwd = &{'Cwd::'.$func} };    is( $@, '',		"$func() should not explode under taint mode" );    ok( tainted($cwd),	"its return value should be tainted" );}# Previous versions of Cwd tainted $^Ois !tainted($^O), 1, "\$^O should not be tainted";

⌨️ 快捷键说明

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