memory.t

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

T
53
字号
##################################################################################            !!!!!   Do NOT edit this file directly!   !!!!!##            Edit mktests.PL and/or parts/inc/memory instead.##  This file was automatically generated from the definition files in the#  parts/inc/ subdirectory by mktests.PL. To learn more about how all this#  works, please read the F<HACKERS> file that came with this distribution.#################################################################################BEGIN {  if ($ENV{'PERL_CORE'}) {    chdir 't' if -d 't';    @INC = ('../lib', '../ext/Devel/PPPort/t') if -d '../lib' && -d '../ext';    require Config; import Config;    use vars '%Config';    if (" $Config{'extensions'} " !~ m[ Devel/PPPort ]) {      print "1..0 # Skip -- Perl configured without Devel::PPPort module\n";      exit 0;    }  }  else {    unshift @INC, 't';  }  sub load {    eval "use Test";    require 'testutil.pl' if $@;  }  if (1) {    load();    plan(tests => 1);  }}use Devel::PPPort;use strict;$^W = 1;package Devel::PPPort;use vars '@ISA';require DynaLoader;@ISA = qw(DynaLoader);bootstrap Devel::PPPort;package main;ok(Devel::PPPort::checkmem(), 4);

⌨️ 快捷键说明

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