Changeset 394
- Timestamp:
- 06/26/2005 10:27:41 AM (3 years ago)
- Location:
- branches/lighttpd-1.3.x/tests
- Files:
-
- 15 modified
-
LightyTest.pm (modified) (1 diff)
-
Makefile.am (modified) (3 diffs)
-
core-request.t (modified) (1 diff)
-
core-response.t (modified) (1 diff)
-
core.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-userdir.t (modified) (1 diff)
-
request.t (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
branches/lighttpd-1.3.x/tests/LightyTest.pm
r388 r394 72 72 system($self->{LIGHTTPD_PATH}." -f /tmp/cfg.file"); 73 73 # system("valgrind --tool=memcheck --show-reachable=yes --leak-check=yes --logfile=foo ".$lighttpd_path." -D -f /tmp/cfg.file &"); 74 75 sleep(1); 74 # 75 76 select(undef, undef, undef, 0.1); 77 78 # sleep(1); 76 79 77 80 unlink("/tmp/cfg.file"); -
branches/lighttpd-1.3.x/tests/Makefile.am
r99 r394 13 13 14 14 TESTS=\ 15 prepare.sh \16 run-tests.pl \17 cleanup.sh15 prepare.sh \ 16 run-tests.pl \ 17 cleanup.sh 18 18 19 19 CONFS=fastcgi-10.conf \ … … 34 34 mod-userdir.t \ 35 35 mod-rewrite.t \ 36 request.t 36 request.t \ 37 LightyTest.pm 37 38 38 39 39 TESTS_ENVIRONMENT=$(srcdir)/wrapper.sh $(srcdir) $(top_builddir) 40 TESTS_ENVIRONMENT=$(srcdir)/wrapper.sh $(srcdir) $(top_builddir) 40 41 41 42 EXTRA_DIST=wrapper.sh lighttpd.conf \ … … 43 44 $(CONFS) \ 44 45 $(TESTS) 46 45 47 SUBDIRS=docroot 46 48 -
branches/lighttpd-1.3.x/tests/core-request.t
r388 r394 1 1 #! /usr/bin/perl -w 2 BEGIN { 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 } 2 8 3 9 use strict; -
branches/lighttpd-1.3.x/tests/core-response.t
r388 r394 1 1 #! /usr/bin/perl -w 2 3 BEGIN { 4 # add current source dir to the include-path 5 # we need this for make distcheck 6 (my $srcdir = $0) =~ s#/[^/]+$#/#; 7 unshift @INC, $srcdir; 8 } 2 9 3 10 use strict; -
branches/lighttpd-1.3.x/tests/core.t
r388 r394 1 1 #! /usr/bin/perl -w 2 3 BEGIN { 4 # add current source dir to the include-path 5 # we need this for make distcheck 6 (my $srcdir = $0) =~ s#/[^/]+$#/#; 7 unshift @INC, $srcdir; 8 } 2 9 3 10 use strict; -
branches/lighttpd-1.3.x/tests/mod-access.t
r388 r394 1 1 #! /usr/bin/perl -w 2 BEGIN { 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 } 2 8 3 9 use strict; -
branches/lighttpd-1.3.x/tests/mod-auth.t
r388 r394 1 1 #! /usr/bin/perl -w 2 BEGIN { 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 } 2 8 3 9 use strict; -
branches/lighttpd-1.3.x/tests/mod-cgi.t
r388 r394 1 1 #! /usr/bin/perl -w 2 BEGIN { 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 } 2 8 3 9 use strict; -
branches/lighttpd-1.3.x/tests/mod-compress.t
r388 r394 1 1 #! /usr/bin/perl -w 2 BEGIN { 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 } 2 8 3 9 use strict; -
branches/lighttpd-1.3.x/tests/mod-fastcgi.t
r388 r394 1 1 #! /usr/bin/perl -w 2 BEGIN { 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 } 2 8 3 9 use strict; -
branches/lighttpd-1.3.x/tests/mod-proxy.t
r388 r394 1 1 #! /usr/bin/perl -w 2 BEGIN { 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 } 2 8 3 9 use strict; -
branches/lighttpd-1.3.x/tests/mod-redirect.t
r388 r394 1 1 #! /usr/bin/perl -w 2 BEGIN { 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 } 2 8 3 9 use strict; -
branches/lighttpd-1.3.x/tests/mod-rewrite.t
r388 r394 1 1 #! /usr/bin/perl -w 2 BEGIN { 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 } 2 8 3 9 use strict; -
branches/lighttpd-1.3.x/tests/mod-userdir.t
r388 r394 1 1 #! /usr/bin/perl -w 2 BEGIN { 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 } 2 8 3 9 use strict; -
branches/lighttpd-1.3.x/tests/request.t
r388 r394 1 1 #! /usr/bin/perl -w 2 BEGIN { 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 } 2 8 3 9 use strict;

