From de9e2f988166f17bd3d4a08e635edbf29236e370 Mon Sep 17 00:00:00 2001 From: Glenn Strauss Date: Mon, 20 Jul 2020 03:59:40 -0400 Subject: [PATCH] [tests] mod_compress -> mod_deflate --- tests/CMakeLists.txt | 2 +- tests/Makefile.am | 4 ++-- tests/SConscript | 4 ++-- tests/meson.build | 2 +- tests/{mod-compress.conf => mod-deflate.conf} | 0 tests/{mod-compress.t => mod-deflate.t} | 2 +- 6 files changed, 7 insertions(+), 7 deletions(-) rename tests/{mod-compress.conf => mod-deflate.conf} (100%) rename tests/{mod-compress.t => mod-deflate.t} (98%) 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 similarity index 100% rename from tests/mod-compress.conf rename to tests/mod-deflate.conf diff --git a/tests/mod-compress.t b/tests/mod-deflate.t similarity index 98% rename from tests/mod-compress.t rename to 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();