summaryrefslogtreecommitdiff
path: root/common
diff options
context:
space:
mode:
authorBruno Wagner <bwgpro@gmail.com>2015-08-07 10:57:06 -0300
committerBruno Wagner <bwgpro@gmail.com>2015-08-12 17:17:18 -0300
commit79795e783a3a20004ee6f47d6a5add137f316099 (patch)
tree731e4302a9bf15a38f6a26cd54663bb5b79e6c3f /common
parentaf3ebd56742fa6348935e0e013da9822ae4bd301 (diff)
[tests] Sync very large files won't explode memory
Sync very large files will now fail early because it was exploding the memory, it needs some love, but for now I'll just make it fail and open an issue to take a better look at it
Diffstat (limited to 'common')
-rw-r--r--common/src/leap/soledad/common/tests/test_server.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/common/src/leap/soledad/common/tests/test_server.py b/common/src/leap/soledad/common/tests/test_server.py
index 17827486..eb221a34 100644
--- a/common/src/leap/soledad/common/tests/test_server.py
+++ b/common/src/leap/soledad/common/tests/test_server.py
@@ -461,6 +461,7 @@ class EncryptedSyncTestCase(
"""
Test if Soledad can sync very large files.
"""
+ self.fail("Work in progress, was exploding memory")
length = 100 * (10 ** 6) # 100 MB
return self._test_encrypted_sym_sync(doc_size=length, number_of_docs=1)