blob: f2f95a0a36d377fce2835766bd5bd48356b7e77c [file] [log] [blame]
#!/bin/sh
# the next line restarts using tclsh \
exec tclsh "$0" "$@"
source [file join apachetest apachetest.tcl]
apachetest::getbinname $argv
apachetest::makeconf server.conf {
LoadModule websh_module [file join $CWD .. unix "mod_websh3.5.0[info sharedlibextension]"]
AddHandler websh .ws3
WebshConfig [file join $CWD websh.conf]
}
# we do this to keep tcltest happy - it reads argv...
set commandline [lindex $argv 1]
set argv {}
switch -exact $commandline {
startserver {
apachetest::startserver
}
default {
source [file join . mod_websh.test]
}
}