This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Rename ext/Devel/PPPort to ext/Devel-PPPort
[perl5.git] / ext / Devel-PPPort / t / sv_xpvf.t
1 ################################################################################
2 #
3 #            !!!!!   Do NOT edit this file directly!   !!!!!
4 #
5 #            Edit mktests.PL and/or parts/inc/sv_xpvf instead.
6 #
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 #
11 ################################################################################
12
13 BEGIN {
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
28   sub load {
29     eval "use Test";
30     require 'testutil.pl' if $@;
31   }
32
33   if (9) {
34     load();
35     plan(tests => 9);
36   }
37 }
38
39 use Devel::PPPort;
40 use strict;
41 $^W = 1;
42
43 package Devel::PPPort;
44 use vars '@ISA';
45 require DynaLoader;
46 @ISA = qw(DynaLoader);
47 bootstrap Devel::PPPort;
48
49 package main;
50
51 use Tie::Hash;
52 my %h;
53 tie %h, 'Tie::StdHash';
54 $h{foo} = 'foo-';
55 $h{bar} = '';
56
57 ok(&Devel::PPPort::vnewSVpvf(), $] >= 5.004 ? 'Perl-42' : '%s-%d');
58 ok(&Devel::PPPort::sv_vcatpvf('1-2-3-'), $] >= 5.004 ? '1-2-3-Perl-42' : '1-2-3-%s-%d');
59 ok(&Devel::PPPort::sv_vsetpvf('1-2-3-'), $] >= 5.004 ? 'Perl-42' : '%s-%d');
60
61 &Devel::PPPort::sv_catpvf_mg($h{foo});
62 ok($h{foo}, $] >= 5.004 ? 'foo-Perl-42' : 'foo-');
63
64 &Devel::PPPort::Perl_sv_catpvf_mg($h{foo});
65 ok($h{foo}, $] >= 5.004 ? 'foo-Perl-42-Perl-43' : 'foo-');
66
67 &Devel::PPPort::sv_catpvf_mg_nocontext($h{foo});
68 ok($h{foo}, $] >= 5.004 ? 'foo-Perl-42-Perl-43-Perl-44' : 'foo-');
69
70 &Devel::PPPort::sv_setpvf_mg($h{bar});
71 ok($h{bar}, $] >= 5.004 ? 'mhx-42' : '');
72
73 &Devel::PPPort::Perl_sv_setpvf_mg($h{bar});
74 ok($h{bar}, $] >= 5.004 ? 'foo-43' : '');
75
76 &Devel::PPPort::sv_setpvf_mg_nocontext($h{bar});
77 ok($h{bar}, $] >= 5.004 ? 'bar-44' : '');
78