summaryrefslogtreecommitdiffhomepage
path: root/test.py
diff options
context:
space:
mode:
authorRobey Pointer <robey@lag.net>2005-05-10 17:36:38 +0000
committerRobey Pointer <robey@lag.net>2005-05-10 17:36:38 +0000
commit366f216e3f4792da0f619e6aeff84a91230c2527 (patch)
treef25a96245cc7850c15482db7a407788c44446d39 /test.py
parente8efe095a68a764b1b9ebaa73510fea16707fd5a (diff)
[project @ Arch-1:robey@lag.net--2005-master-shake%paramiko--dev--1--patch-8]
add unit tests for the packetizer, and fix a little locking bug where i think more of the packetizer write function should be inside a lock
Diffstat (limited to 'test.py')
-rwxr-xr-xtest.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/test.py b/test.py
index a97354ee..97188a4e 100755
--- a/test.py
+++ b/test.py
@@ -32,6 +32,7 @@ from test_message import MessageTest
from test_file import BufferedFileTest
from test_pkey import KeyTest
from test_kex import KexTest
+from test_packetizer import PacketizerTest
from test_transport import TransportTest
from test_sftp import SFTPTest
@@ -87,6 +88,7 @@ suite.addTest(unittest.makeSuite(BufferedFileTest))
if options.use_pkey:
suite.addTest(unittest.makeSuite(KeyTest))
suite.addTest(unittest.makeSuite(KexTest))
+suite.addTest(unittest.makeSuite(PacketizerTest))
if options.use_transport:
suite.addTest(unittest.makeSuite(TransportTest))
if options.use_sftp: