source: for-distributions/trunk/bin/windows/perl/lib/XS/APItest.pm@ 14489

Last change on this file since 14489 was 14489, checked in by oranfry, 17 years ago

upgrading to perl 5.8

File size: 4.0 KB
Line 
1package XS::APItest;
2
3use 5.008;
4use strict;
5use warnings;
6use Carp;
7
8use base qw/ DynaLoader Exporter /;
9
10# Items to export into callers namespace by default. Note: do not export
11# names by default without a very good reason. Use EXPORT_OK instead.
12# Do not simply export all your public functions/methods/constants.
13
14# Export everything since these functions are only used by a test script
15our @EXPORT = qw( print_double print_int print_long
16 print_float print_long_double have_long_double print_flush
17 mpushp mpushn mpushi mpushu
18 mxpushp mxpushn mxpushi mxpushu
19 call_sv call_pv call_method eval_sv eval_pv require_pv
20 G_SCALAR G_ARRAY G_VOID G_DISCARD G_EVAL G_NOARGS
21 G_KEEPERR G_NODEBUG G_METHOD
22 mycroak strtab
23);
24
25# from cop.h
26sub G_SCALAR() { 0 }
27sub G_ARRAY() { 1 }
28sub G_VOID() { 128 }
29sub G_DISCARD() { 2 }
30sub G_EVAL() { 4 }
31sub G_NOARGS() { 8 }
32sub G_KEEPERR() { 16 }
33sub G_NODEBUG() { 32 }
34sub G_METHOD() { 64 }
35
36our $VERSION = '0.08';
37
38bootstrap XS::APItest $VERSION;
39
401;
41__END__
42
43=head1 NAME
44
45XS::APItest - Test the perl C API
46
47=head1 SYNOPSIS
48
49 use XS::APItest;
50 print_double(4);
51
52=head1 ABSTRACT
53
54This module tests the perl C API. Currently tests that C<printf>
55works correctly.
56
57=head1 DESCRIPTION
58
59This module can be used to check that the perl C API is behaving
60correctly. This module provides test functions and an associated
61test script that verifies the output.
62
63This module is not meant to be installed.
64
65=head2 EXPORT
66
67Exports all the test functions:
68
69=over 4
70
71=item B<print_double>
72
73Test that a double-precision floating point number is formatted
74correctly by C<printf>.
75
76 print_double( $val );
77
78Output is sent to STDOUT.
79
80=item B<print_long_double>
81
82Test that a C<long double> is formatted correctly by
83C<printf>. Takes no arguments - the test value is hard-wired
84into the function (as "7").
85
86 print_long_double();
87
88Output is sent to STDOUT.
89
90=item B<have_long_double>
91
92Determine whether a C<long double> is supported by Perl. This should
93be used to determine whether to test C<print_long_double>.
94
95 print_long_double() if have_long_double;
96
97=item B<print_nv>
98
99Test that an C<NV> is formatted correctly by
100C<printf>.
101
102 print_nv( $val );
103
104Output is sent to STDOUT.
105
106=item B<print_iv>
107
108Test that an C<IV> is formatted correctly by
109C<printf>.
110
111 print_iv( $val );
112
113Output is sent to STDOUT.
114
115=item B<print_uv>
116
117Test that an C<UV> is formatted correctly by
118C<printf>.
119
120 print_uv( $val );
121
122Output is sent to STDOUT.
123
124=item B<print_int>
125
126Test that an C<int> is formatted correctly by
127C<printf>.
128
129 print_int( $val );
130
131Output is sent to STDOUT.
132
133=item B<print_long>
134
135Test that an C<long> is formatted correctly by
136C<printf>.
137
138 print_long( $val );
139
140Output is sent to STDOUT.
141
142=item B<print_float>
143
144Test that a single-precision floating point number is formatted
145correctly by C<printf>.
146
147 print_float( $val );
148
149Output is sent to STDOUT.
150
151=item B<call_sv>, B<call_pv>, B<call_method>
152
153These exercise the C calls of the same names. Everything after the flags
154arg is passed as the the args to the called function. They return whatever
155the C function itself pushed onto the stack, plus the return value from
156the function; for example
157
158 call_sv( sub { @_, 'c' }, G_ARRAY, 'a', 'b'); # returns 'a', 'b', 'c', 3
159 call_sv( sub { @_ }, G_SCALAR, 'a', 'b'); # returns 'b', 1
160
161=item B<eval_sv>
162
163Evaluates the passed SV. Result handling is done the same as for
164C<call_sv()> etc.
165
166=item B<eval_pv>
167
168Exercises the C function of the same name in scalar context. Returns the
169same SV that the C function returns.
170
171=item B<require_pv>
172
173Exercises the C function of the same name. Returns nothing.
174
175=back
176
177=head1 SEE ALSO
178
179L<XS::Typemap>, L<perlapi>.
180
181=head1 AUTHORS
182
183Tim Jenness, E<lt>[email protected]<gt>,
184Christian Soeller, E<lt>[email protected]<gt>,
185Hugo van der Sanden E<lt>[email protected]<gt>
186
187=head1 COPYRIGHT AND LICENSE
188
189Copyright (C) 2002,2004 Tim Jenness, Christian Soeller, Hugo van der Sanden.
190All Rights Reserved.
191
192This library is free software; you can redistribute it and/or modify
193it under the same terms as Perl itself.
194
195=cut
Note: See TracBrowser for help on using the repository browser.