Updated for release 1.2.1.

Added '*w' pattern test.
This commit is contained in:
Diego Nehab 2001-03-07 22:38:54 +00:00
parent bbb4b3e2c1
commit 22396d34f5
2 changed files with 48 additions and 34 deletions

View file

@ -1,6 +1,6 @@
-----------------------------------------------------------------------------
-- LuaSocket automated test module
-- server.lua
-- testsrvr.lua
-- This is the server module. It's completely controled by the client module
-- by the use of a control connection.
-----------------------------------------------------------------------------
@ -11,16 +11,6 @@
assert(dofile("testcmd.lua"))
test_debug_mode()
-----------------------------------------------------------------------------
-- Get host and port from command line
-----------------------------------------------------------------------------
HOST = "localhost"
PORT = 2020
if arg then
HOST = arg[1] or HOST
PORT = arg[2] or PORT
end
-----------------------------------------------------------------------------
-- Start control connection
-----------------------------------------------------------------------------