This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Upgrade to Devel::PPPort 3.13_02
[perl5.git] / ext / Devel / PPPort / t / pvs.t
CommitLineData
f2ab5a41
MHM
1################################################################################
2#
3# !!!!! Do NOT edit this file directly! !!!!!
4#
5# Edit mktests.PL and/or parts/inc/pvs instead.
6#
cac25305
MHM
7# This file was automatically generated from the definition files in the
8# parts/inc/ subdirectory by mktests.PL. To learn more about how all this
9# works, please read the F<HACKERS> file that came with this distribution.
10#
f2ab5a41
MHM
11################################################################################
12
13BEGIN {
14 if ($ENV{'PERL_CORE'}) {
15 chdir 't' if -d 't';
16 @INC = ('../lib', '../ext/Devel/PPPort/t') if -d '../lib' && -d '../ext';
17 require Config; import Config;
18 use vars '%Config';
19 if (" $Config{'extensions'} " !~ m[ Devel/PPPort ]) {
20 print "1..0 # Skip -- Perl configured without Devel::PPPort module\n";
21 exit 0;
22 }
23 }
24 else {
25 unshift @INC, 't';
26 }
27
c07deaaf
MHM
28 sub load {
29 eval "use Test";
30 require 'testutil.pl' if $@;
f2ab5a41 31 }
c07deaaf 32
c1a049cb 33 if (8) {
c07deaaf 34 load();
c1a049cb 35 plan(tests => 8);
f2ab5a41
MHM
36 }
37}
38
39use Devel::PPPort;
40use strict;
41$^W = 1;
42
236afa0a
MHM
43package Devel::PPPort;
44use vars '@ISA';
45require DynaLoader;
46@ISA = qw(DynaLoader);
47bootstrap Devel::PPPort;
48
49package main;
50
f2ab5a41
MHM
51my $x = 'foo';
52
53ok(Devel::PPPort::newSVpvs(), "newSVpvs");
c1a049cb 54ok(Devel::PPPort::newSVpvs_flags(), "newSVpvs_flags");
f2ab5a41
MHM
55
56Devel::PPPort::sv_catpvs($x);
57ok($x, "foosv_catpvs");
58
59Devel::PPPort::sv_setpvs($x);
60ok($x, "sv_setpvs");
61
62my %h = ('hv_fetchs' => 42);
63Devel::PPPort::hv_stores(\%h, 4711);
64ok(scalar keys %h, 2);
65ok(exists $h{'hv_stores'});
66ok($h{'hv_stores'}, 4711);
67ok(Devel::PPPort::hv_fetchs(\%h), 42);
68