2011-04-30 13:42:48 +00:00
|
|
|
OPT = -O2
|
|
|
|
DEBUG = 2
|
|
|
|
CFLAGS = -I../include -Wall ${OPT}
|
|
|
|
LDFLAGS = -L../lib
|
|
|
|
LOADLIBES = -lpsyc -lm
|
2011-05-03 20:18:35 +00:00
|
|
|
TARGETS = testServer testParser testMatch testRender testText isRoutingVar getVarType
|
2011-04-30 13:42:48 +00:00
|
|
|
WRAPPER =
|
|
|
|
DIET = diet
|
|
|
|
PORT = 4440
|
|
|
|
|
2011-04-30 14:41:30 +00:00
|
|
|
all: ${TARGETS}
|
2011-04-30 13:42:48 +00:00
|
|
|
|
|
|
|
diet: WRAPPER = ${DIET}
|
|
|
|
diet: all
|
|
|
|
|
|
|
|
debug: CFLAGS += -DDEBUG=${DEBUG} -g
|
|
|
|
debug: CFLAGS := $(subst ${OPT},-O0,${CFLAGS})
|
|
|
|
debug: all
|
|
|
|
|
|
|
|
test: ${TARGETS}
|
2011-04-25 21:58:07 +00:00
|
|
|
./testRender
|
|
|
|
./testMatch
|
|
|
|
./isRoutingVar
|
2011-04-29 21:11:48 +00:00
|
|
|
./getVarType
|
2011-04-30 13:42:48 +00:00
|
|
|
for f in packets/full-*; do echo ">> $$f"; ./testParser $$f; done
|
2011-04-27 17:18:17 +00:00
|
|
|
|
2011-04-29 02:12:55 +00:00
|
|
|
netstart:
|
2011-04-30 13:42:48 +00:00
|
|
|
./testServer ${PORT}
|
2011-04-29 02:12:55 +00:00
|
|
|
|
2011-04-30 15:07:01 +00:00
|
|
|
netstartr:
|
|
|
|
./testServer ${PORT} -r
|
|
|
|
|
2011-04-29 02:12:55 +00:00
|
|
|
netstartv:
|
2011-04-30 13:42:48 +00:00
|
|
|
./testServer ${PORT} -v
|
2011-04-29 02:12:55 +00:00
|
|
|
|
2011-04-30 15:07:01 +00:00
|
|
|
netstartrv:
|
|
|
|
./testServer ${PORT} -r -v
|
|
|
|
|
2011-04-27 17:18:17 +00:00
|
|
|
nettest:
|
2011-04-30 13:42:48 +00:00
|
|
|
for f in packets/full-*; do echo ">> $$f"; cat $$f | nc localhost ${PORT} | diff -u $$f -; done
|
2011-04-29 01:20:00 +00:00
|
|
|
|
|
|
|
nettesterr:
|
2011-04-30 13:42:48 +00:00
|
|
|
for f in packets/error-*; do echo ">> $$f"; cat $$f | nc localhost ${PORT}; done
|
2011-04-27 17:18:17 +00:00
|
|
|
|
2011-04-29 14:03:17 +00:00
|
|
|
splittest:
|
2011-04-30 13:42:48 +00:00
|
|
|
for f in packets/full-*; do echo ">> $$f"; ./splittest.pl $$f ${PORT} | diff -u $$f -; done
|
2011-04-29 14:03:17 +00:00
|
|
|
|
2011-04-27 17:18:17 +00:00
|
|
|
nettestp1:
|
2011-04-30 13:42:48 +00:00
|
|
|
(for f in packets/part-1-p*; do cat $$f; done) | nc localhost ${PORT} | diff -u packets/full-1 -
|
2011-04-27 17:18:17 +00:00
|
|
|
|
|
|
|
nettestp2:
|
2011-04-30 13:42:48 +00:00
|
|
|
(for f in packets/part-1-length-p*; do cat $$f; done) | nc localhost ${PORT} | diff -u packets/full-1-length -
|
2011-04-17 19:46:00 +00:00
|
|
|
|
|
|
|
clean:
|
2011-04-30 13:42:48 +00:00
|
|
|
rm -f ${TARGETS}
|
2011-04-22 09:50:13 +00:00
|
|
|
|
|
|
|
it: all
|