/usr/lib/perl5/PDL/Tests.pm is in pdl 1:2.4.7+dfsg-2ubuntu5.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 | #
# GENERATED WITH PDL::PP! Don't modify!
#
package PDL::Tests;
@EXPORT_OK = qw( PDL::PP test_foop PDL::PP test_fsumover PDL::PP test_nsumover PDL::PP test_setdim PDL::PP test_fooseg PDL::PP test_fooflow1 PDL::PP test_fooflow2 PDL::PP test_fooflow3 );
%EXPORT_TAGS = (Func=>[@EXPORT_OK]);
use PDL::Core;
use PDL::Exporter;
use DynaLoader;
@ISA = ( 'PDL::Exporter','DynaLoader' );
push @PDL::Core::PP, __PACKAGE__;
bootstrap PDL::Tests ;
=head1 NAME
PDL::Tests - tests for some PP features
=head1 SYNOPSIS
use PDL::Tests;
<test code>
=head1 DESCRIPTION
This module provides some PP defined test functions that are
supposed to test some features/bugs of PDL::PP.
Strictly speaking this module shouldn't be installed with a
'make install' but I haven't yet worked out how to do it.
=cut
*test_foop = \&PDL::test_foop;
*test_fsumover = \&PDL::test_fsumover;
*test_nsumover = \&PDL::test_nsumover;
*test_setdim = \&PDL::test_setdim;
*test_fooseg = \&PDL::test_fooseg;
*test_fooflow1 = \&PDL::test_fooflow1;
*test_fooflow2 = \&PDL::test_fooflow2;
*test_fooflow3 = \&PDL::test_fooflow3;
;
# Exit with OK status
1;
|