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

« back to all changes in this revision

Viewing changes to t/modperl/merge2.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:
 
1
use strict;
 
2
use warnings FATAL => 'all';
 
3
 
 
4
use Apache::TestRequest qw(GET_BODY_ASSERT);
 
5
use Apache::Test;
 
6
use Apache::TestUtil;
 
7
 
 
8
my $module   = 'TestModperl::merge';
 
9
Apache::TestRequest::module($module);
 
10
 
 
11
my $config   = Apache::Test::config();
 
12
my $hostport = Apache::TestRequest::hostport($config);
 
13
 
 
14
my $base = "http://$hostport";
 
15
 
 
16
# test server-to-container merging (with overrides) for:
 
17
#   PerlSetEnv
 
18
#   PerlPassEnv
 
19
#   PerlSetVar
 
20
#   PerlAddVar
 
21
 
 
22
my $uri = "$base/merge2/";
 
23
t_debug("connecting to $uri");
 
24
print GET_BODY_ASSERT $uri;