File: TEST

package info (click to toggle)
libapache2-mod-auth-tkt 2.3.99~b1-1
  • links: PTS
  • area: main
  • in suites: bookworm, bullseye, buster, forky, sid, trixie
  • size: 856 kB
  • sloc: ansic: 2,213; perl: 1,756; sh: 128; makefile: 94; php: 88; ruby: 59; tcl: 55; python: 48
file content (23 lines) | stat: -rwxr-xr-x 537 bytes parent folder | download
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/env 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;
}