1
0
Fork 0
mirror of git://git.psyc.eu/libpsyc synced 2024-08-15 03:19:02 +00:00

Makefile: netstart

This commit is contained in:
Gabor Adam Toth 2011-04-29 04:12:55 +02:00
parent b2ae4a58af
commit 4fd4a49e09

View file

@ -12,6 +12,12 @@ all: $(TARGETS)
test: $(TARGETS)
for f in packets/full-* packets/error-*; do echo ">> $$f"; ./testParser $$f; done
netstart:
./testServer $(PORT)
netstartv:
./testServer $(PORT) -v
nettest:
for f in packets/full-*; do echo ">> $$f"; cat $$f | nc localhost $(PORT) | diff -u $$f -; done