mirror of
git://git.psyc.eu/libpsyc
synced 2024-08-15 03:19:02 +00:00
nettest: run split tests too
This commit is contained in:
parent
44622925f5
commit
3fc8eebfa1
1 changed files with 6 additions and 4 deletions
|
@ -40,15 +40,17 @@ netstartv:
|
|||
netstartrv:
|
||||
./testServer ${PORT} -rv
|
||||
|
||||
nettest:
|
||||
nettest: nettestfull nettestsplit
|
||||
|
||||
nettestfull:
|
||||
for f in packets/[0-9]*; do echo ">> $$f"; cat $$f | nc localhost ${PORT} | diff -u $$f -; done
|
||||
|
||||
nettestsplit:
|
||||
for f in packets/[0-9]*; do echo ">> $$f"; ./splittest.pl $$f ${PORT} | diff -u $$f -; done
|
||||
|
||||
nettesterr:
|
||||
for f in packets/err-*; do echo ">> $$f"; cat $$f | nc localhost ${PORT}; done
|
||||
|
||||
splittest:
|
||||
for f in packets/[0-9]*; do echo ">> $$f"; ./splittest.pl $$f ${PORT} | diff -u $$f -; done
|
||||
|
||||
clean:
|
||||
rm -f ${TARGETS}
|
||||
|
||||
|
|
Loading…
Reference in a new issue