~ubuntu-branches/ubuntu/edgy/libapache2-mod-perl2/edgy

« back to all changes in this revision

Viewing changes to t/compat/send_fd.t

  • Committer: Bazaar Package Importer
  • Author(s): Adam Conrad
  • Date: 2004-08-19 06:23:48 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20040819062348-jxl4koqbtvgm8v2t
Tags: 1.99.14-4
Remove the LFS CFLAGS, and build-dep against apache2-*-dev (>= 2.0.50-10)
as we're backing out of the apache2/apr ABI transition.

Show diffs side-by-side

added added

removed removed

Lines of Context:
4
4
use Apache::Test;
5
5
use Apache::TestRequest;
6
6
 
 
7
use File::Spec::Functions qw(catfile);
 
8
 
7
9
plan tests => 3;
8
10
 
9
11
my $config = Apache::Test::config();
14
16
 
15
17
ok $data;
16
18
 
17
 
my $module = 'response/TestCompat/send_fd.pm';
 
19
my $module = catfile Apache::Test::vars('serverroot'),
 
20
    'response/TestCompat/send_fd.pm';
18
21
 
19
22
ok length($data) == -s $module;
20
23