svsetsv.t

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

T
26
字号
BEGIN {    chdir 't' if -d 't';    @INC = '../lib';    push @INC, "::lib:$MacPerl::Architecture:" if $^O eq 'MacOS';    require Config; import Config;    if ($Config{'extensions'} !~ /\bXS\/APItest\b/) {        print "1..0 # Skip: XS::APItest was not built\n";        exit 0;    }}use strict;use warnings;use Test::More tests => 3;BEGIN { use_ok('XS::APItest') };# I can't see a good way to easily get back perl-space diagnostics for these# I hope that this isn't a problem.ok(sv_setsv_cow_hashkey_core,   "With PERL_CORE sv_setsv does COW for shared hash key scalars");ok(!sv_setsv_cow_hashkey_notcore,   "Without PERL_CORE sv_setsv doesn't COW for shared hash key scalars");

⌨️ 快捷键说明

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