You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
627 B
CMake
34 lines
627 B
CMake
add_executable(fcgi-responder fcgi-responder.c)
|
|
add_executable(scgi-responder scgi-responder.c)
|
|
|
|
set(T_FILES
|
|
prepare.sh
|
|
cachable.t
|
|
core-404-handler.t
|
|
core-condition.t
|
|
core-keepalive.t
|
|
core-request.t
|
|
core-response.t
|
|
core-var-include.t
|
|
lowercase.t
|
|
mod-auth.t
|
|
mod-cgi.t
|
|
mod-deflate.t
|
|
mod-extforward.t
|
|
mod-fastcgi.t
|
|
mod-proxy.t
|
|
mod-secdownload.t
|
|
mod-setenv.t
|
|
mod-ssi.t
|
|
request.t
|
|
symlink.t
|
|
cleanup.sh
|
|
)
|
|
|
|
foreach(it ${T_FILES})
|
|
add_test(NAME ${it} COMMAND "${lighttpd_SOURCE_DIR}/tests/wrapper.sh"
|
|
"${lighttpd_SOURCE_DIR}/tests"
|
|
"${lighttpd_BINARY_DIR}"
|
|
"${lighttpd_SOURCE_DIR}/tests/${it}")
|
|
endforeach()
|