summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorStefan Bühler <stbuehler@web.de>2008-12-05 22:30:32 +0000
committerStefan Bühler <stbuehler@web.de>2008-12-05 22:30:32 +0000
commit454aefc51a3a522594018bd05f465c3bc692a0b2 (patch)
tree1a3c9deaaf7e8f2cd325c093ae2c516276daf25c /tests
parent34172dfb09fb290dbbabefe44be19aba1174c5a5 (diff)
downloadlighttpd-git-454aefc51a3a522594018bd05f465c3bc692a0b2.tar.gz
[cmake] Add basic cmake support
- Not distributed yet (so only available in svn checkout) git-svn-id: svn://svn.lighttpd.net/lighttpd/branches/lighttpd-1.4.x@2359 152afb58-edef-0310-8abb-c4023f1b3aa9
Diffstat (limited to 'tests')
-rw-r--r--tests/CMakeLists.txt34
1 files changed, 34 insertions, 0 deletions
diff --git a/tests/CMakeLists.txt b/tests/CMakeLists.txt
new file mode 100644
index 00000000..e8082497
--- /dev/null
+++ b/tests/CMakeLists.txt
@@ -0,0 +1,34 @@
+SET(T_FILES
+ prepare.sh
+ cachable.t
+ core-404-handler.t
+ core-condition.t
+ core-keepalive.t
+ core-request.t
+ core-response.t
+ core.t
+ core-var-include.t
+ lowercase.t
+ mod-access.t
+ mod-auth.t
+ mod-cgi.t
+ mod-compress.t
+ mod-extforward.t
+ mod-fastcgi.t
+ mod-proxy.t
+ mod-redirect.t
+ mod-rewrite.t
+ mod-secdownload.t
+ mod-setenv.t
+ mod-ssi.t
+ mod-userdir.t
+ request.t
+ symlink.t
+)
+
+FOREACH(it ${T_FILES})
+ ADD_TEST(${it} "${lighttpd_SOURCE_DIR}/tests/wrapper.sh"
+ "${lighttpd_SOURCE_DIR}/tests"
+ "${lighttpd_BINARY_DIR}"
+ "${lighttpd_SOURCE_DIR}/tests/${it}")
+ENDFOREACH(it)