From 89e39a455956848268924ea54fbab9ad374b1bb8 Mon Sep 17 00:00:00 2001 From: Robey Pointer Date: Thu, 9 Mar 2006 00:14:55 -0800 Subject: [project @ robey@lag.net-20060309081455-84be2ae54f98e897] move sftp big-file tests into a separate class and add one that does a prefetch, then seeks in random order --- test.py | 3 +++ 1 file changed, 3 insertions(+) (limited to 'test.py') diff --git a/test.py b/test.py index ca5a4aef..97116b09 100755 --- a/test.py +++ b/test.py @@ -37,6 +37,7 @@ from test_kex import KexTest from test_packetizer import PacketizerTest from test_transport import TransportTest from test_sftp import SFTPTest +from test_sftp_big import BigSFTPTest default_host = 'localhost' default_user = os.environ.get('USER', 'nobody') @@ -99,6 +100,8 @@ if options.use_transport: suite.addTest(unittest.makeSuite(TransportTest)) if options.use_sftp: suite.addTest(unittest.makeSuite(SFTPTest)) +if options.use_big_file: + suite.addTest(unittest.makeSuite(BigSFTPTest)) verbosity = 1 if options.verbose: verbosity = 2 -- cgit v1.2.1