File: TEST

package info (click to toggle)
libapache2-mod-auth-tkt 2.1.0%2Bdfsg-1
  • links: PTS
  • area: main
  • in suites: jessie, jessie-kfreebsd, stretch
  • size: 976 kB
  • ctags: 709
  • sloc: ansic: 2,178; perl: 1,595; makefile: 91; sh: 88; php: 88; ruby: 59; python: 48
file content (23 lines) | stat: -rwxr-xr-x 533 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#!/usr/bin/perl

package MAT::TestRun;
use base 'Apache::TestRun';
use Apache::TestConfig;

__PACKAGE__->new->run(@ARGV);

# See 'perldoc Apache::TestRun'
sub pre_configure
{
  my $self = shift;
  Apache::TestConfig::autoconfig_skip_module_add('mod_auth_tkt.c');
  $self->SUPER::pre_configure();
}

# Explicitly set servername, since we require .localdomain for our cookies
sub new_test_config {
      my $self = shift;
      $self->{conf_opts}->{servername} = 'localhost.localdomain';
      return $self->SUPER::new_test_config;
}