Changeset 2028
- Timestamp:
- 01/15/2008 10:06:43 PM (7 months ago)
- Location:
- trunk/tests
- Files:
-
- 22 modified
-
cachable.t (modified) (1 diff)
-
core-condition.t (modified) (1 diff)
-
core-keepalive.t (modified) (1 diff)
-
core-request.t (modified) (1 diff)
-
core-response.t (modified) (1 diff)
-
core-var-include.t (modified) (1 diff)
-
core.t (modified) (1 diff)
-
lowercase.t (modified) (1 diff)
-
mod-access.t (modified) (1 diff)
-
mod-auth.t (modified) (1 diff)
-
mod-cgi.t (modified) (1 diff)
-
mod-compress.t (modified) (1 diff)
-
mod-fastcgi.t (modified) (1 diff)
-
mod-proxy.t (modified) (1 diff)
-
mod-redirect.t (modified) (1 diff)
-
mod-rewrite.t (modified) (1 diff)
-
mod-secdownload.t (modified) (1 diff)
-
mod-setenv.t (modified) (1 diff)
-
mod-ssi.t (modified) (1 diff)
-
mod-userdir.t (modified) (1 diff)
-
request.t (modified) (1 diff)
-
symlink.t (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/tests/cachable.t
r1349 r2028 1 1 #!/usr/bin/env perl 2 2 BEGIN { 3 # add current source dir to the include-path4 # we need this for make distcheck5 (my $srcdir = $0) =~ s#/[^/]+$#/#;6 unshift @INC, $srcdir;3 # add current source dir to the include-path 4 # we need this for make distcheck 5 (my $srcdir = $0) =~ s,/[^/]+$,/,; 6 unshift @INC, $srcdir; 7 7 } 8 8 -
trunk/tests/core-condition.t
r1349 r2028 1 1 #!/usr/bin/env perl 2 2 BEGIN { 3 # add current source dir to the include-path4 # we need this for make distcheck5 (my $srcdir = $0) =~ s#/[^/]+$#/#;6 unshift @INC, $srcdir;3 # add current source dir to the include-path 4 # we need this for make distcheck 5 (my $srcdir = $0) =~ s,/[^/]+$,/,; 6 unshift @INC, $srcdir; 7 7 } 8 8 -
trunk/tests/core-keepalive.t
r1349 r2028 1 1 #!/usr/bin/env perl 2 3 2 BEGIN { 4 # add current source dir to the include-path5 # we need this for make distcheck6 (my $srcdir = $0) =~ s#/[^/]+$#/#;7 unshift @INC, $srcdir;3 # add current source dir to the include-path 4 # we need this for make distcheck 5 (my $srcdir = $0) =~ s,/[^/]+$,/,; 6 unshift @INC, $srcdir; 8 7 } 9 8 -
trunk/tests/core-request.t
r1349 r2028 1 1 #!/usr/bin/env perl 2 2 BEGIN { 3 # add current source dir to the include-path4 # we need this for make distcheck5 (my $srcdir = $0) =~ s#/[^/]+$#/#;6 unshift @INC, $srcdir;3 # add current source dir to the include-path 4 # we need this for make distcheck 5 (my $srcdir = $0) =~ s,/[^/]+$,/,; 6 unshift @INC, $srcdir; 7 7 } 8 8 -
trunk/tests/core-response.t
r1349 r2028 1 1 #!/usr/bin/env perl 2 3 2 BEGIN { 4 # add current source dir to the include-path5 # we need this for make distcheck6 (my $srcdir = $0) =~ s#/[^/]+$#/#;7 unshift @INC, $srcdir;3 # add current source dir to the include-path 4 # we need this for make distcheck 5 (my $srcdir = $0) =~ s,/[^/]+$,/,; 6 unshift @INC, $srcdir; 8 7 } 9 8 -
trunk/tests/core-var-include.t
r1349 r2028 1 1 #!/usr/bin/env perl 2 2 BEGIN { 3 # add current source dir to the include-path4 # we need this for make distcheck5 (my $srcdir = $0) =~ s#/[^/]+$#/#;6 unshift @INC, $srcdir;3 # add current source dir to the include-path 4 # we need this for make distcheck 5 (my $srcdir = $0) =~ s,/[^/]+$,/,; 6 unshift @INC, $srcdir; 7 7 } 8 8 -
trunk/tests/core.t
r1349 r2028 1 1 #!/usr/bin/env perl 2 3 2 BEGIN { 4 # add current source dir to the include-path5 # we need this for make distcheck6 (my $srcdir = $0) =~ s#/[^/]+$#/#;7 unshift @INC, $srcdir;3 # add current source dir to the include-path 4 # we need this for make distcheck 5 (my $srcdir = $0) =~ s,/[^/]+$,/,; 6 unshift @INC, $srcdir; 8 7 } 9 8 -
trunk/tests/lowercase.t
r1349 r2028 1 1 #!/usr/bin/env perl 2 2 BEGIN { 3 # add current source dir to the include-path4 # we need this for make distcheck5 (my $srcdir = $0) =~ s#/[^/]+$#/#;6 unshift @INC, $srcdir;3 # add current source dir to the include-path 4 # we need this for make distcheck 5 (my $srcdir = $0) =~ s,/[^/]+$,/,; 6 unshift @INC, $srcdir; 7 7 } 8 8 -
trunk/tests/mod-access.t
r1349 r2028 1 1 #!/usr/bin/env perl 2 2 BEGIN { 3 # add current source dir to the include-path4 # we need this for make distcheck5 (my $srcdir = $0) =~ s#/[^/]+$#/#;6 unshift @INC, $srcdir;3 # add current source dir to the include-path 4 # we need this for make distcheck 5 (my $srcdir = $0) =~ s,/[^/]+$,/,; 6 unshift @INC, $srcdir; 7 7 } 8 8 -
trunk/tests/mod-auth.t
r1990 r2028 1 1 #!/usr/bin/env perl 2 2 BEGIN { 3 # add current source dir to the include-path4 # we need this for make distcheck5 (my $srcdir = $0) =~ s#/[^/]+$#/#;6 unshift @INC, $srcdir;3 # add current source dir to the include-path 4 # we need this for make distcheck 5 (my $srcdir = $0) =~ s,/[^/]+$,/,; 6 unshift @INC, $srcdir; 7 7 } 8 8 -
trunk/tests/mod-cgi.t
r1992 r2028 1 1 #!/usr/bin/env perl 2 2 BEGIN { 3 # add current source dir to the include-path4 # we need this for make distcheck5 (my $srcdir = $0) =~ s#/[^/]+$#/#;6 unshift @INC, $srcdir;3 # add current source dir to the include-path 4 # we need this for make distcheck 5 (my $srcdir = $0) =~ s,/[^/]+$,/,; 6 unshift @INC, $srcdir; 7 7 } 8 8 -
trunk/tests/mod-compress.t
r1432 r2028 1 1 #!/usr/bin/env perl 2 2 BEGIN { 3 # add current source dir to the include-path4 # we need this for make distcheck5 (my $srcdir = $0) =~ s#/[^/]+$#/#;6 unshift @INC, $srcdir;3 # add current source dir to the include-path 4 # we need this for make distcheck 5 (my $srcdir = $0) =~ s,/[^/]+$,/,; 6 unshift @INC, $srcdir; 7 7 } 8 8 -
trunk/tests/mod-fastcgi.t
r1432 r2028 1 1 #!/usr/bin/env perl 2 2 BEGIN { 3 # add current source dir to the include-path4 # we need this for make distcheck5 (my $srcdir = $0) =~ s#/[^/]+$#/#;6 unshift @INC, $srcdir;3 # add current source dir to the include-path 4 # we need this for make distcheck 5 (my $srcdir = $0) =~ s,/[^/]+$,/,; 6 unshift @INC, $srcdir; 7 7 } 8 8 -
trunk/tests/mod-proxy.t
r1349 r2028 1 1 #!/usr/bin/env perl 2 2 BEGIN { 3 # add current source dir to the include-path4 # we need this for make distcheck5 (my $srcdir = $0) =~ s#/[^/]+$#/#;6 unshift @INC, $srcdir;3 # add current source dir to the include-path 4 # we need this for make distcheck 5 (my $srcdir = $0) =~ s,/[^/]+$,/,; 6 unshift @INC, $srcdir; 7 7 } 8 8 -
trunk/tests/mod-redirect.t
r1349 r2028 1 1 #!/usr/bin/env perl 2 2 BEGIN { 3 # add current source dir to the include-path4 # we need this for make distcheck5 (my $srcdir = $0) =~ s#/[^/]+$#/#;6 unshift @INC, $srcdir;3 # add current source dir to the include-path 4 # we need this for make distcheck 5 (my $srcdir = $0) =~ s,/[^/]+$,/,; 6 unshift @INC, $srcdir; 7 7 } 8 8 -
trunk/tests/mod-rewrite.t
r1349 r2028 1 1 #!/usr/bin/env perl 2 2 BEGIN { 3 # add current source dir to the include-path4 # we need this for make distcheck5 (my $srcdir = $0) =~ s#/[^/]+$#/#;6 unshift @INC, $srcdir;3 # add current source dir to the include-path 4 # we need this for make distcheck 5 (my $srcdir = $0) =~ s,/[^/]+$,/,; 6 unshift @INC, $srcdir; 7 7 } 8 8 -
trunk/tests/mod-secdownload.t
r1349 r2028 1 1 #!/usr/bin/env perl 2 2 BEGIN { 3 # add current source dir to the include-path4 # we need this for make distcheck5 (my $srcdir = $0) =~ s#/[^/]+$#/#;6 unshift @INC, $srcdir;3 # add current source dir to the include-path 4 # we need this for make distcheck 5 (my $srcdir = $0) =~ s,/[^/]+$,/,; 6 unshift @INC, $srcdir; 7 7 } 8 8 -
trunk/tests/mod-setenv.t
r1432 r2028 1 1 #!/usr/bin/env perl 2 3 2 BEGIN { 4 # add current source dir to the include-path5 # we need this for make distcheck6 (my $srcdir = $0) =~ s#/[^/]+$#/#;7 unshift @INC, $srcdir;3 # add current source dir to the include-path 4 # we need this for make distcheck 5 (my $srcdir = $0) =~ s,/[^/]+$,/,; 6 unshift @INC, $srcdir; 8 7 } 9 8 -
trunk/tests/mod-ssi.t
r1349 r2028 1 1 #!/usr/bin/env perl 2 2 BEGIN { 3 # add current source dir to the include-path4 # we need this for make distcheck5 (my $srcdir = $0) =~ s#/[^/]+$#/#;6 unshift @INC, $srcdir;3 # add current source dir to the include-path 4 # we need this for make distcheck 5 (my $srcdir = $0) =~ s,/[^/]+$,/,; 6 unshift @INC, $srcdir; 7 7 } 8 8 -
trunk/tests/mod-userdir.t
r1349 r2028 1 1 #!/usr/bin/env perl 2 2 BEGIN { 3 # add current source dir to the include-path4 # we need this for make distcheck5 (my $srcdir = $0) =~ s#/[^/]+$#/#;6 unshift @INC, $srcdir;3 # add current source dir to the include-path 4 # we need this for make distcheck 5 (my $srcdir = $0) =~ s,/[^/]+$,/,; 6 unshift @INC, $srcdir; 7 7 } 8 8 -
trunk/tests/request.t
r1992 r2028 1 1 #!/usr/bin/env perl 2 2 BEGIN { 3 # add current source dir to the include-path4 # we need this for make distcheck5 (my $srcdir = $0) =~ s#/[^/]+$#/#;6 unshift @INC, $srcdir;3 # add current source dir to the include-path 4 # we need this for make distcheck 5 (my $srcdir = $0) =~ s,/[^/]+$,/,; 6 unshift @INC, $srcdir; 7 7 } 8 8 -
trunk/tests/symlink.t
r1349 r2028 1 1 #!/usr/bin/env perl 2 2 BEGIN { 3 # add current source dir to the include-path4 # we need this for make distcheck5 (my $srcdir = $0) =~ s#/[^/]+$#/#;6 unshift @INC, $srcdir;3 # add current source dir to the include-path 4 # we need this for make distcheck 5 (my $srcdir = $0) =~ s,/[^/]+$,/,; 6 unshift @INC, $srcdir; 7 7 } 8 8

