Merge "Reduced file size to prevent timeout"

This commit is contained in:
Jenkins 2015-08-15 20:39:25 +00:00 committed by Gerrit Code Review
commit cae8244206
2 changed files with 4 additions and 4 deletions

View File

@ -145,7 +145,7 @@ class BackupNFSSwiftBasedTestCase(test.TestCase):
mock.Mock(return_value=mock_remotefsclient))
# Remove tempdir.
self.addCleanup(shutil.rmtree, self.temp_dir)
for _i in range(0, 128):
for _i in range(0, 32):
self.volume_file.write(os.urandom(1024))
def test_backup_uncompressed(self):
@ -261,7 +261,7 @@ class BackupNFSSwiftBasedTestCase(test.TestCase):
# Verify sha contents
content1 = service._read_sha256file(backup)
self.assertEqual(128 * 1024 / content1['chunk_size'],
self.assertEqual(32 * 1024 / content1['chunk_size'],
len(content1['sha256s']))
def test_backup_cmp_shafiles(self):

View File

@ -91,7 +91,7 @@ class BackupSwiftTestCase(test.TestCase):
self.addCleanup(self.volume_file.close)
# Remove tempdir.
self.addCleanup(shutil.rmtree, self.temp_dir)
for _i in range(0, 128):
for _i in range(0, 64):
self.volume_file.write(os.urandom(1024))
def test_backup_swift_url(self):
@ -237,7 +237,7 @@ class BackupSwiftTestCase(test.TestCase):
# Verify sha contents
content1 = service._read_sha256file(backup)
self.assertEqual(128 * 1024 / content1['chunk_size'],
self.assertEqual(64 * 1024 / content1['chunk_size'],
len(content1['sha256s']))
def test_backup_cmp_shafiles(self):