1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53
|
REQUIRE_MODULE PERF
# win: can start htremote's (if cygwin), test seems then
# to proceed normally, but then hangs, likely at the end
@:SKIP $OS win # FIXME hangs until timeout
@:SKIP $OS mac # FIXME fails always
INCLUDE $TOP/test/config.htb
DAEMON
_EXEC ../src/htremote -p10011 -e"/bin/bash ./run.sh -Ss"
END
DAEMON
_EXEC ../src/htremote -p10012 -e"/bin/bash ./run.sh -Ss"
END
DAEMON
_EXEC ../src/htremote -p10013 -e"/bin/bash ./run.sh -Ss"
END
CLIENT
_SLEEP 4000
END
GO
PERF:DISTRIBUTED localhost:10011
PERF:DISTRIBUTED localhost:10012
PERF:DISTRIBUTED localhost:10013
PERF:DISTRIBUTED localhost:10014
SET con=500
SET count=20
CLIENT $con
_LOOP $count
_REQ $YOUR_HOST $YOUR_PORT
__GET / HTTP/1.1
__Host: $YOUR_HOST:$YOUR_PORT
__
_WAIT
_END
END
SERVER $YOUR_PORT $con
_LOOP $count
_RES
_WAIT
__HTTP/1.1 200 OK
__Content-Type: text/plain
__Content-Length: AUTO
__
__Hallo Velo
_END
END
|