~ubuntu-branches/ubuntu/feisty/libapache2-mod-perl2/feisty-security

« back to all changes in this revision

Viewing changes to t/modperl/request_rec_perlio_api.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:
16
16
{
17
17
    my $content  = join "", 'a'..'j', 'k'..'t';
18
18
    my $location = "$uri?STDIN";
19
 
    my $expected = join "", 'a'..'j', "<samba>", 'k'..'t';
 
19
    my $expected = join "", 'a'..'j', "package", 'k'..'t';
20
20
    my $received = POST_BODY_ASSERT $location, content => $content;
21
21
    ok t_cmp($expected, $received, "STDIN tests");
22
22
}