~ubuntu-branches/ubuntu/saucy/db/saucy-proposed

« back to all changes in this revision

Viewing changes to perl/DB_File/t/pod.t

  • Committer: Bazaar Package Importer
  • Author(s): Colin Watson
  • Date: 2010-11-05 15:02:09 UTC
  • mfrom: (13.1.12 sid)
  • Revision ID: james.westby@ubuntu.com-20101105150209-ppvyn0619pu014xo
Tags: 5.1.19-1ubuntu1
* Resynchronise with Debian.  Remaining changes:
  - Pass --build/--host to configure to support cross-building, and don't
    override CC.
  - Disable the Java build when cross-building, for now.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
eval " use Test::More " ;
2
 
 
3
 
if ($@)
4
 
{
5
 
    print "1..0 # Skip: Test::More required for testing POD\n" ;
6
 
    exit 0;
7
 
}
8
 
 
9
 
eval "use Test::Pod 1.00";
10
 
 
11
 
if ($@)
12
 
{
13
 
    print "1..0 # Skip: Test::Pod 1.00 required for testing POD\n" ;
14
 
    exit 0;
15
 
}
16
 
 
17
 
all_pod_files_ok();
18