diff options
author | Bruno Wagner <bwgpro@gmail.com> | 2015-08-07 10:57:06 -0300 |
---|---|---|
committer | Bruno Wagner <bwgpro@gmail.com> | 2015-08-12 17:17:18 -0300 |
commit | 79795e783a3a20004ee6f47d6a5add137f316099 (patch) | |
tree | 731e4302a9bf15a38f6a26cd54663bb5b79e6c3f | |
parent | af3ebd56742fa6348935e0e013da9822ae4bd301 (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
-rw-r--r-- | common/src/leap/soledad/common/tests/test_server.py | 1 |
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) |