Browse Source
git-svn-id: svn://svn.lighttpd.net/lighttpd/branches/lighttpd-1.4.x@2244 152afb58-edef-0310-8abb-c4023f1b3aa9svn/tags/lighttpd-1.4.20
3 changed files with 0 additions and 24 deletions
@ -1,21 +0,0 @@
|
||||
#!/usr/bin/perl |
||||
BEGIN { |
||||
# add current source dir to the include-path |
||||
# we need this for make distcheck |
||||
(my $srcdir = $0) =~ s,/[^/]+$,/,; |
||||
unshift @INC, $srcdir; |
||||
} |
||||
|
||||
use strict; |
||||
use IO::Socket; |
||||
use Test::More tests => 2; |
||||
use LightyTest; |
||||
|
||||
my $tf = LightyTest->new(); |
||||
$tf->{CONFIGFILE} = 'env-variables.conf'; |
||||
|
||||
TODO: { |
||||
local $TODO = 'we still crash on undefined environment variables'; |
||||
ok($tf->start_proc == 0, "Starting lighttpd"); |
||||
ok($tf->stop_proc == 0, "Stopping lighttpd"); |
||||
}; |
Loading…
Reference in new issue