summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGlenn Strauss <gstrauss@gluelogic.com>2020-07-20 03:59:40 -0400
committerGlenn Strauss <gstrauss@gluelogic.com>2020-08-02 06:46:22 -0400
commitde9e2f988166f17bd3d4a08e635edbf29236e370 (patch)
tree33478daa27012833830550f2011bdebe1b50ea0e
parent672891a7d6d7cf70f3577d2cfaad8927c7810209 (diff)
downloadlighttpd-git-de9e2f988166f17bd3d4a08e635edbf29236e370.tar.gz
[tests] mod_compress -> mod_deflate
-rw-r--r--tests/CMakeLists.txt2
-rw-r--r--tests/Makefile.am4
-rw-r--r--tests/SConscript4
-rw-r--r--tests/meson.build2
-rw-r--r--tests/mod-deflate.conf (renamed from tests/mod-compress.conf)0
-rwxr-xr-xtests/mod-deflate.t (renamed from tests/mod-compress.t)2
6 files changed, 7 insertions, 7 deletions
diff --git a/tests/CMakeLists.txt b/tests/CMakeLists.txt
index f4c4867e..51d534bd 100644
--- a/tests/CMakeLists.txt
+++ b/tests/CMakeLists.txt
@@ -23,7 +23,7 @@ set(T_FILES
lowercase.t
mod-auth.t
mod-cgi.t
- mod-compress.t
+ mod-deflate.t
mod-extforward.t
mod-fastcgi.t
mod-proxy.t
diff --git a/tests/Makefile.am b/tests/Makefile.am
index af901c9e..7edc1a5a 100644
--- a/tests/Makefile.am
+++ b/tests/Makefile.am
@@ -36,8 +36,8 @@ CONFS=\
mod-auth.conf \
mod-auth.t \
mod-cgi.t \
- mod-compress.conf \
- mod-compress.t \
+ mod-deflate.conf \
+ mod-deflate.t \
mod-extforward.conf \
mod-extforward.t \
mod-fastcgi.t \
diff --git a/tests/SConscript b/tests/SConscript
index 4bf33579..7a03839f 100644
--- a/tests/SConscript
+++ b/tests/SConscript
@@ -17,8 +17,8 @@ extra_dist = Split('fastcgi-10.conf \
mod-auth.conf \
mod-auth.t \
mod-cgi.t \
- mod-compress.t \
- mod-compress.conf \
+ mod-deflate.t \
+ mod-deflate.conf \
mod-fastcgi.t \
request.t \
mod-ssi.t \
diff --git a/tests/meson.build b/tests/meson.build
index a90064e4..f6c501ac 100644
--- a/tests/meson.build
+++ b/tests/meson.build
@@ -32,7 +32,7 @@ tests = [
'lowercase.t',
'mod-auth.t',
'mod-cgi.t',
- 'mod-compress.t',
+ 'mod-deflate.t',
'mod-extforward.t',
'mod-fastcgi.t',
'mod-proxy.t',
diff --git a/tests/mod-compress.conf b/tests/mod-deflate.conf
index 8303e750..8303e750 100644
--- a/tests/mod-compress.conf
+++ b/tests/mod-deflate.conf
diff --git a/tests/mod-compress.t b/tests/mod-deflate.t
index bbcabfee..7cabcb9f 100755
--- a/tests/mod-compress.t
+++ b/tests/mod-deflate.t
@@ -14,7 +14,7 @@ use LightyTest;
my $tf = LightyTest->new();
my $t;
-$tf->{CONFIGFILE} = 'mod-compress.conf';
+$tf->{CONFIGFILE} = 'mod-deflate.conf';
ok($tf->start_proc == 0, "Starting lighttpd") or die();