Changeset 40
- Timestamp:
- 07/21/08 15:35:30 (5 years ago)
- Files:
-
- trunk/tests/Makefile (modified) (2 diffs)
- trunk/tests/httpd2.conf.in (added)
- trunk/tests/pages/end.asp (modified) (1 diff)
- trunk/tests/startup.pl.in (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/tests/Makefile
r2 r40 1 1 MODULEPATH=libexec/httpd 2 MODULEPATH2=libexec/apache2 2 3 CHECKOUT= 3 4 4 all: startup.pl httpd.conf logs 5 @echo "'make run' to start on port 8989" 5 all: startup.pl httpd.conf httpd2.conf logs 6 @echo "'make run' to start Apache1 on port 8989" 7 @echo "'make run2' to start on Apache2 port 8989" 6 8 7 9 run: 8 10 httpd -X -f `pwd`/httpd.conf 11 12 run2: 13 httpd -f `pwd`/httpd2.conf -k start 14 @echo "'make stop2' to stop Apache2" 15 16 stop2: 17 httpd -f `pwd`/httpd2.conf -k stop 9 18 10 19 logs: … … 42 51 httpd.conf ; \ 43 52 fi 53 54 httpd2.conf: httpd2.conf.in 55 @echo "Creating httpd2.conf (LoadModule lines might need fixup)" 56 @if test -z "${CHECKOUT}"; then \ 57 sed -e "s^@@CHECKOUT@@^"`pwd`"/..^g;" \ 58 -e "s^@@MODULEPATH@@^${MODULEPATH2}^g;" < \ 59 httpd2.conf.in > \ 60 httpd2.conf ; \ 61 else \ 62 sed -e "s^@@CHECKOUT@@^${CHECKOUT}^g;" \ 63 -e "s^@@MODULEPATH@@^${MODULEPATH2}^g;" < \ 64 httpd2.conf.in > \ 65 httpd2.conf ; \ 66 fi trunk/tests/pages/end.asp
r2 r40 1 You should not see an 11...<br/> 1 2 <% 2 3 for (1 .. 100) { trunk/tests/startup.pl.in
r2 r40 1 1 use lib '@@CHECKOUT@@/lib'; 2 eval "use Devel::DTrace;"; 2 3 use Mungo; 3 4 1;
